DescribeRoutingProfileResponse.fromJson constructor

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

Implementation

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