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