clipSliverOnly property
bool
get
clipSliverOnly
Whether or not to ignore clipping on foreground and background.
Implementation
bool get clipSliverOnly => _clipSliverOnly;
set
clipSliverOnly
(bool value)
Implementation
set clipSliverOnly(bool value) {
if (value != clipSliverOnly) {
_clipSliverOnly = value;
markNeedsPaint();
}
}