ExternalData.fromJson constructor
ExternalData.fromJson(
- Map json_
Implementation
ExternalData.fromJson(core.Map json_)
: this(
sha256Hash: json_.containsKey('sha256Hash')
? json_['sha256Hash'] as core.String
: null,
url: json_.containsKey('url') ? json_['url'] as core.String : null,
);