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,
      );