AwsApiGatewayEndpointConfiguration.fromJson constructor

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

Implementation

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