SourceRepository.fromJson constructor

SourceRepository.fromJson(
  1. Map _json
)

Implementation

SourceRepository.fromJson(core.Map _json)
    : this(
        deployedUrl: _json.containsKey('deployedUrl')
            ? _json['deployedUrl'] as core.String
            : null,
        url: _json.containsKey('url') ? _json['url'] as core.String : null,
      );