allowSnapshotting property

bool allowSnapshotting

Whether a snapshot of this child widget is painted in its place.

Implementation

bool get allowSnapshotting => _allowSnapshotting;
void allowSnapshotting=(bool value)

Implementation

set allowSnapshotting(bool value) {
  if (value == allowSnapshotting) {
    return;
  }
  _allowSnapshotting = value;
  notifyListeners();
}