CreateRoutingProfileResponse.fromJson constructor
Implementation
factory CreateRoutingProfileResponse.fromJson(Map<String, dynamic> json) {
return CreateRoutingProfileResponse(
routingProfileArn: json['RoutingProfileArn'] as String?,
routingProfileId: json['RoutingProfileId'] as String?,
);
}