addSummaryRows property

bool get addSummaryRows

Implementation

bool get addSummaryRows => _addSummaryRows?.get() ?? false;
set addSummaryRows (dynamic v)

Implementation

set addSummaryRows(dynamic v) {
  if (_addSummaryRows != null) {
    _addSummaryRows!.set(v);
  } else if (v != null) {
    _addSummaryRows = BooleanObservable(Binding.toKey(id, 'addsummaryrows'), v,
        scope: scope, listener: onPropertyChange);
  }
}