PivotGroupLimit.fromJson constructor
PivotGroupLimit.fromJson(
- Map json_
Implementation
PivotGroupLimit.fromJson(core.Map json_)
: this(
applyOrder: json_.containsKey('applyOrder')
? json_['applyOrder'] as core.int
: null,
countLimit: json_.containsKey('countLimit')
? json_['countLimit'] as core.int
: null,
);