DisassociateLinkResponse.fromJson constructor

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

Implementation

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