DescribeEndpointResponse.fromJson constructor
Implementation
factory DescribeEndpointResponse.fromJson(Map<String, dynamic> json) {
return DescribeEndpointResponse(
endpointProperties: json['EndpointProperties'] != null
? EndpointProperties.fromJson(
json['EndpointProperties'] as Map<String, dynamic>)
: null,
);
}