getGalleryRect static method
Returns the Rect stored for a openPopupGallery.
Implementation
static Rect? getGalleryRect() {
final data = web.window.localStorage.getItem('gallery_rect');
if (data != null) {
return _RectExtension.fromJson(json.decode(data));
}
return null;
}