shareToEmail method

Future<bool> shareToEmail({
  1. required List<String> recipients,
  2. String? subject,
  3. String? body,
  4. List<String>? attachmentPaths,
  5. bool isHtml = false,
})

Sends an email with native composers or system mail actions, supporting attachments.

Implementation

Future<bool> shareToEmail({
  required List<String> recipients,
  String? subject,
  String? body,
  List<String>? attachmentPaths,
  bool isHtml = false,
}) {
  throw UnimplementedError('shareToEmail() has not been implemented.');
}