type property

ChartType get type

The type of chart to render.

Implementation

ChartType get type => _type;
set type (ChartType value)

Implementation

set type(ChartType value) {
  if (_type == value) return;
  _type = value;
  notifyListeners();
}