CompensationHistogramRequest.fromJson constructor

CompensationHistogramRequest.fromJson(
  1. Map json_
)

Implementation

CompensationHistogramRequest.fromJson(core.Map json_)
    : this(
        bucketingOption: json_.containsKey('bucketingOption')
            ? NumericBucketingOption.fromJson(json_['bucketingOption']
                as core.Map<core.String, core.dynamic>)
            : null,
        type: json_.containsKey('type') ? json_['type'] as core.String : null,
      );