log static method

Future<void> log(
  1. String message
)

Send a VERBOSE log message to TestFairy.

Implementation

static Future<void> log(String message) async {
  TestFairyBase.prepareTwoWayInvoke();
  await TestFairyBase.channel.invokeMethod<void>('log', message);
}