HttpEndpointDescription.fromJson constructor

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

Implementation

factory HttpEndpointDescription.fromJson(Map<String, dynamic> json) {
  return HttpEndpointDescription(
    name: json['Name'] as String?,
    url: json['Url'] as String?,
  );
}