PivotGroupLimit.fromJson constructor

PivotGroupLimit.fromJson(
  1. 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,
      );