shadowOffset property

Point get shadowOffset

Gets or sets the X and Y offset of this part's shadow. This is only relevant if #isShadowed is true. The initial value is (6, 6).

Implementation

_i3.Point get shadowOffset => _i4.getProperty(
      this,
      'shadowOffset',
    );
set shadowOffset (Point value)

Implementation

set shadowOffset(_i3.Point value) {
  _i4.setProperty(
    this,
    'shadowOffset',
    value,
  );
}