delete static method

Future<bool> delete(
  1. String translationModel
)

Implementation

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