dropAll method

void dropAll(
  1. Iterable<String> tableNames, {
  2. bool cascade = false,
})

Implementation

void dropAll(Iterable<String> tableNames, {bool cascade = false}) {
  for (var n in tableNames) {
    drop(n, cascade: cascade);
  }
}