PscAutomatedEndpoints.fromJson constructor
Implementation
factory PscAutomatedEndpoints.fromJson(Map<String, dynamic> json) {
return PscAutomatedEndpoints(
projectId: json['projectId'] ?? '',
network: json['network'] ?? '',
matchAddress: json['matchAddress'] ?? '',
);
}