launchEmail method

void launchEmail()

Implementation

void launchEmail() async {
  _launchUrl(
    'mailto:$email?subject=${Uri.encodeComponent(subject)}&body=${Uri.encodeComponent(body)}',
    'Email',
  );
}