curveDashArray property

List<double>? get curveDashArray

Implementation

List<double>? get curveDashArray => _curveDashArray;
set curveDashArray (List<double>? value)

Implementation

set curveDashArray(List<double>? value) {
  if (_curveDashArray != value) {
    _curveDashArray = value;
    markNeedsLayout();
  }
}