hideToolbar method Null safety
Hides the toolbar part of the overlay.
To hide the whole overlay, see hide.
Implementation
void hideToolbar() {
if (_toolbar == null) {
return;
}
_toolbar?.remove();
_toolbar = null;
}
Hides the toolbar part of the overlay.
To hide the whole overlay, see hide.
void hideToolbar() {
if (_toolbar == null) {
return;
}
_toolbar?.remove();
_toolbar = null;
}