ForeignKeyRef.fromJson constructor
Implementation
factory ForeignKeyRef.fromJson(Map<String, Object?> j) => ForeignKeyRef(
j['table'] as String,
column: j['column'] as String?,
onDelete: (j['onDelete'] as String?) ?? 'NO ACTION',
onUpdate: (j['onUpdate'] as String?) ?? 'NO ACTION',
);