fromJson static method

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

Implementation

static ExternalServiceSpec fromJson(Map<String, dynamic> json) {
  return ExternalServiceSpec(url: json["url"]);
}