RelationshipDetails.fromJson constructor

RelationshipDetails.fromJson(
  1. Map _json
)

Implementation

RelationshipDetails.fromJson(core.Map _json)
    : this(
        linkedTable: _json.containsKey('linkedTable')
            ? _json['linkedTable'] as core.String
            : null,
      );