mask property

  1. @override
Mask? mask
inherited

The calling display object is masked by the specified mask object.

By default, a Mask is applied relative to this display object. If Mask.relativeToParent is set to true, the Mask is applied relative to the parent display object.

Implementation

@override
Mask? get mask => _mask;
  1. @override
void mask=(Mask? mask)
override

Implementation

@override
set mask(Mask? mask) {
  _throwUnsupportedError();
}