emailSupport method

dynamic emailSupport()

Implementation

emailSupport() {
  final Uri email = Uri(
    scheme: 'mailto',
    path: ServicesEnvironment.supportEmail,
    query: _encodeQueryParameters(
      params: <String, String>{
        'subject': (subject != null) ? subject! : '',
      },
    ),
  );

  _launchUrl(uri: email);
}