ForeignKeyDto.fromJson constructor

ForeignKeyDto.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory ForeignKeyDto.fromJson(Map<String, Object?> json) => ForeignKeyDto(
      json['table'] as String,
      json['column'] as String,
    );