GdataDiffDownloadResponse.fromJson constructor

GdataDiffDownloadResponse.fromJson(
  1. Map json_
)

Implementation

GdataDiffDownloadResponse.fromJson(core.Map json_)
  : this(
      objectLocation:
          json_.containsKey('objectLocation')
              ? GdataCompositeMedia.fromJson(
                json_['objectLocation']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );