clip property

Rect? clip

Implementation

Rect? get clip {
  return this._clip;
}
void clip=(Rect? c)

Implementation

set clip(Rect? c) {
  this._clip = c;
  if (this.texture != null) this.texture?.setAllRectByClip(c!);
}