AssociateLinkResponse.fromJson constructor
Implementation
factory AssociateLinkResponse.fromJson(Map<String, dynamic> json) {
return AssociateLinkResponse(
linkAssociation: json['LinkAssociation'] != null
? LinkAssociation.fromJson(
json['LinkAssociation'] as Map<String, dynamic>)
: null,
);
}