ServicePortEndpointSpec.fromJson constructor

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

Implementation

factory ServicePortEndpointSpec.fromJson(Map<String, dynamic> json) {
  return ServicePortEndpointSpec(path: json['path'] as String, identity: json['identity'] as String, type: json['type'] as String?);
}