isFilled property

bool get isFilled

Gets or sets whether this PathFigure is drawn filled. The default value is true.

Implementation

_i2.bool get isFilled => _i4.getProperty(
      this,
      'isFilled',
    );
set isFilled (bool value)

Implementation

set isFilled(_i2.bool value) {
  _i4.setProperty(
    this,
    'isFilled',
    value,
  );
}