GoogleCloudWebriskV1RiceDeltaEncoding.fromJson constructor

GoogleCloudWebriskV1RiceDeltaEncoding.fromJson(
  1. Map json_
)

Implementation

GoogleCloudWebriskV1RiceDeltaEncoding.fromJson(core.Map json_)
    : this(
        encodedData: json_.containsKey('encodedData')
            ? json_['encodedData'] as core.String
            : null,
        entryCount: json_.containsKey('entryCount')
            ? json_['entryCount'] as core.int
            : null,
        firstValue: json_.containsKey('firstValue')
            ? json_['firstValue'] as core.String
            : null,
        riceParameter: json_.containsKey('riceParameter')
            ? json_['riceParameter'] as core.int
            : null,
      );