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