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