delete static method

Future<bool> delete(
  1. String entityModel
)

Implementation

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