CustomRoutingEndpointDescription.fromJson constructor

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

Implementation

factory CustomRoutingEndpointDescription.fromJson(Map<String, dynamic> json) {
  return CustomRoutingEndpointDescription(
    endpointId: json['EndpointId'] as String?,
  );
}