deleteAll static method

Future<int> deleteAll(
  1. String table
)

Implementation

static Future<int> deleteAll(String table) async => await _db!.delete(
      table,
    );