donut property

bool get donut

Whether to render a donut hole (pie charts).

Implementation

bool get donut => _donut;
set donut (bool value)

Implementation

set donut(bool value) {
  if (_donut == value) return;
  _donut = value;
  notifyListeners();
}