fromRawJson static method

DownloadKeyRet fromRawJson(
  1. String rawData
)

from json string

Implementation

static DownloadKeyRet fromRawJson(String rawData) {
  return DownloadKeyRet.fromJson(json.decode(rawData));
}