DiffDownloadResponse.fromJson constructor
DiffDownloadResponse.fromJson(
- Map json_
Implementation
DiffDownloadResponse.fromJson(core.Map json_)
: this(
objectLocation:
json_.containsKey('objectLocation')
? CompositeMedia.fromJson(
json_['objectLocation']
as core.Map<core.String, core.dynamic>,
)
: null,
);