ObjectIdentifierAndLinkNameTuple.fromJson constructor

ObjectIdentifierAndLinkNameTuple.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ObjectIdentifierAndLinkNameTuple.fromJson(Map<String, dynamic> json) {
  return ObjectIdentifierAndLinkNameTuple(
    linkName: json['LinkName'] as String?,
    objectIdentifier: json['ObjectIdentifier'] as String?,
  );
}