fillType property Null safety

PathFillType fillType

Determines how the interior of this path is calculated.

Defaults to the non-zero winding rule, PathFillType.nonZero.

Implementation

PathFillType get fillType => PathFillType.values[_getFillType()];
void fillType=(PathFillType value)

Implementation

set fillType(PathFillType value) => _setFillType(value.index);