CompensationHistogramRequest.fromJson constructor
CompensationHistogramRequest.fromJson(
- 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,
);