ServicePortEndpointSpec.fromJson constructor
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?);
}