debug static method

Future<bool> debug(
  1. String type,
  2. String format
)

Implementation

static Future<bool> debug(String type, String format) async {
  var result = await NativeImpl.methodChannel
      .invokeMethod('${methodTag}debug', {'type': type, 'format': format});
  return result;
}