toJson method

Map<String, dynamic> toJson()

Converts this ModelReverseRelationInfo instance to a JSON map for serialization.

Implementation

Map<String, dynamic> toJson() => {
  'fieldNameInThisModel': fieldNameInThisModel,
  'referencingTableOriginalName': referencingTableOriginalName,
  'foreignKeyColumnInReferencingTable': foreignKeyColumnInReferencingTable,
};