allowSnapshotting property
Whether a snapshot of this child widget is painted in its place.
Implementation
bool get allowSnapshotting => _allowSnapshotting;
Implementation
set allowSnapshotting(bool value) {
if (value == allowSnapshotting) {
return;
}
_allowSnapshotting = value;
notifyListeners();
}