DisassociateCustomerGatewayResponse.fromJson constructor

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

Implementation

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