infill property

bool get infill

Enables infill sampling if set to true.

Implementation

bool get infill => _infill;
set infill (bool value)

Implementation

set infill(bool value) {
  _infill = value;
  notifyListeners();
}