shadowBlur property

num get shadowBlur

Gets or sets the numerical value that describes the shadow's blur. Number must be non-negative and non-infinity. A value of 0 would mean the shadow does not blur and larger numbers represent increasingly more blur. The total blur area is independent of the Part's area and can become quite large as this number is increased.

This value is not affected by scale. Default value is 4.

Implementation

_i2.num get shadowBlur => _i4.getProperty(
      this,
      'shadowBlur',
    );
set shadowBlur (num value)

Implementation

set shadowBlur(_i2.num value) {
  _i4.setProperty(
    this,
    'shadowBlur',
    value,
  );
}