I am using the Urilauncher plugin for flutter to open the mail client. This is my code,
final Uri _emailLaunchUri = Uri(
scheme: 'mailto',
path: 'info@moops.in',
queryParameters: {'subject': 'Feedback for Moops'});
await launch(_emailLaunchUri.toString());
However, In the email client. The space in the subject gets substituted by "+" symbol. I already tried replacing spaces with %20 and but then the space gets substituted with these characters. Is there any other special character that I should use to avoid the + symbol and have the spaces instead. Or maybe a way to escape the space.