isShadowed property

bool get isShadowed

Gets or sets whether this PathFigure will render a shadow if one is defined. This is used for turning off shadows on specific subpaths. The default value is true.

Implementation

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

Implementation

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