MeshagentEndpointSpec.fromJson constructor
Implementation
factory MeshagentEndpointSpec.fromJson(Map<String, dynamic> json) {
return MeshagentEndpointSpec(identity: json['identity'] as String, api: json["api"] == null ? null : ApiScope.fromJson(json["api"]));
}