RemoveFlowVpcInterfaceResponse.fromJson constructor
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?,
);
}