log static method

Future<void> log(
  1. int type,
  2. String log
)

Implementation

static Future<void> log(int type, String log) async {
  await _channel.invokeMethod('log', {'type': type, 'log': log});
}