check static method

Future<bool> check(
  1. String translationModel
)

Implementation

static Future<bool> check(String translationModel) async {
  try {
    return await _channel
        .invokeMethod('check', <String, dynamic>{'model': translationModel});
  } on PlatformException catch (e) {
    print(e.message);
    return false;
  }
}