curveDashArray property

List<double>? curveDashArray

Implementation

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

Implementation

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