emailLog static method

Future<void> emailLog(
  1. String email
)

Emails the log to the given address.

Implementation

static Future<void> emailLog(String email) async {
  await _methodChannel.invokeMethod('emailLog', email);
}