Whether to paint inside shapes, the edges of shapes, or both.
Defaults to PaintingStyle.fill.
Source
PaintingStyle get style { return PaintingStyle.values[_data.getInt32(_kStyleOffset, _kFakeHostEndian)]; }
Source
set style(PaintingStyle value) { assert(value != null); final int encoded = value.index; _data.setInt32(_kStyleOffset, encoded, _kFakeHostEndian); }