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,
      );