DescribeVpcPeeringAuthorizationsOutput.fromJson constructor
Implementation
factory DescribeVpcPeeringAuthorizationsOutput.fromJson(
Map<String, dynamic> json) {
return DescribeVpcPeeringAuthorizationsOutput(
vpcPeeringAuthorizations: (json['VpcPeeringAuthorizations'] as List?)
?.whereNotNull()
.map((e) =>
VpcPeeringAuthorization.fromJson(e as Map<String, dynamic>))
.toList(),
);
}