sendMail method

Future<void> sendMail(
  1. List<String> emailAddress,
  2. String subject,
  3. String body,
  4. String? attachment,
  5. List<String>? cc,
  6. List<String>? bcc,
)

Implementation

Future<void> sendMail(List<String> emailAddress, String subject, String body,
    String? attachment, List<String>? cc, List<String>? bcc) {
  throw UnimplementedError('sendMail() has not been implemented.');
}