createTables method

Future<void> createTables(
  1. List<DatabaseSchema> schemas
)

Create multiple tables

Implementation

Future<void> createTables(List<DatabaseSchema> schemas) async {
  for (final schema in schemas) {
    await createTable(schema);
  }
}