snapshot property
Picture
get
snapshot
Grab the current snapshot. Check it exists first using hasSnapshot.
Implementation
Picture get snapshot {
assert(_picture != null, 'No snapshot has been taken');
return _picture!;
}