composeEmail method

Future<bool> composeEmail({
  1. required EmailContent emailContent,
})

Composes an email in the default mail app

Implementation

Future<bool> composeEmail({required EmailContent emailContent}) {
  throw UnimplementedError('composeEmail() has not been implemented.');
}