DropTable.fromMap constructor

DropTable.fromMap(
  1. Map<String, dynamic> map
)

Creates a DropTable from a map representation.

Implementation

factory DropTable.fromMap(Map<String, dynamic> map) {
  return DropTable(map['tableName'] as String);
}