AssociateLinkResponse.fromJson constructor

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

Implementation

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