RemoveFlowVpcInterfaceResponse.fromJson constructor

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

Implementation

factory RemoveFlowVpcInterfaceResponse.fromJson(Map<String, dynamic> json) {
  return RemoveFlowVpcInterfaceResponse(
    flowArn: json['flowArn'] as String?,
    nonDeletedNetworkInterfaceIds:
        (json['nonDeletedNetworkInterfaceIds'] as List?)
            ?.whereNotNull()
            .map((e) => e as String)
            .toList(),
    vpcInterfaceName: json['vpcInterfaceName'] as String?,
  );
}