ForeignKeyInfo.fromMap constructor
Creates a ForeignKeyInfo from a map representation.
Implementation
factory ForeignKeyInfo.fromMap(Map<String, dynamic> map) {
return ForeignKeyInfo(
referencedTable: map['referencedTable'] as String,
referencedColumn: map['referencedColumn'] as String,
onDelete: map['onDelete'] as String?,
onUpdate: map['onUpdate'] as String?,
);
}