SourceRepository.fromJson constructor
SourceRepository.fromJson(
- 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,
);