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