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