type property

TrendlineType get type

Implementation

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

Implementation

set type(TrendlineType value) {
  if (_type != value) {
    _type = value;
    markNeedsLayout();
  }
}