clipBehavior property
Clip
get
clipBehavior
The clip behavior of clipper, defaults to none.
Implementation
Clip get clipBehavior => _clipBehavior;
set
clipBehavior
(Clip value)
Implementation
set clipBehavior(Clip value) {
if (value != _clipBehavior) {
_clipBehavior = value;
markNeedsPaint();
}
}