clear static method

Future<void> clear()

Implementation

static Future<void> clear() async {
  for (var schema in tables) {
    await schema.truncate();
  }
}