fillShape property

bool get fillShape

Implementation

bool get fillShape => fillShapeListenable.value;
set fillShape (bool fill)

Toggles whether shapes should be filled.

Implementation

set fillShape(bool fill) {
  fillShapeListenable.value = fill;
}