totalSumColor property
      
      Color?
      get
      totalSumColor
      
    
    
    
Implementation
Color? get totalSumColor => _totalSumColor;
      
      set
      totalSumColor
      (Color? value) 
      
    
    
    
Implementation
set totalSumColor(Color? value) {
  if (_totalSumColor != value) {
    _totalSumColor = value;
    markNeedsSegmentsPaint();
  }
}