ColumnSchema.fromMap constructor
Implementation
factory ColumnSchema.fromMap(String name, Map<String, dynamic> map) {
return ColumnSchema(
name,
type: map['type']! as String,
isNullable: (map['isNullable'] as bool?) ?? false,
defaultValue: map['default'] as String?,
);
}