updateTableSchema method Null safety

dynamic updateTableSchema(
  1. String table,
  2. List<String> columns
)

Updates the schema

Implementation

updateTableSchema(String table, List<String> columns) {
  schema[table] = columns;
}