open method
Implementation
void open(ModalView view) {
ModalManagerView? manager =
context?.findAncestorWidgetOfExactType<ModalManagerView>();
if (manager != null) {
manager.model.modals.add(view);
manager.model.refresh();
}
}
void open(ModalView view) {
ModalManagerView? manager =
context?.findAncestorWidgetOfExactType<ModalManagerView>();
if (manager != null) {
manager.model.modals.add(view);
manager.model.refresh();
}
}