delete static method

Future<bool> delete(
  1. String model
)

Implementation

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