totalSumPredicate property

ChartValueMapper<T, bool>? totalSumPredicate

Implementation

ChartValueMapper<T, bool>? get totalSumPredicate => _totalSumPredicate;
void totalSumPredicate=(ChartValueMapper<T, bool>? value)

Implementation

set totalSumPredicate(ChartValueMapper<T, bool>? value) {
  if (_totalSumPredicate != value) {
    _totalSumPredicate = value;
    markNeedsLayout();
  }
}