GetTypedLinkFacetInformationResponse.fromJson constructor

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

Implementation

factory GetTypedLinkFacetInformationResponse.fromJson(
    Map<String, dynamic> json) {
  return GetTypedLinkFacetInformationResponse(
    identityAttributeOrder: (json['IdentityAttributeOrder'] as List?)
        ?.whereNotNull()
        .map((e) => e as String)
        .toList(),
  );
}