error static method

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

Implementation

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