VpcInterfaceAttachment.fromJson constructor

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

Implementation

factory VpcInterfaceAttachment.fromJson(Map<String, dynamic> json) {
  return VpcInterfaceAttachment(
    vpcInterfaceName: json['vpcInterfaceName'] as String?,
  );
}