toggle method
Open or Close InnerDrawer
Implementation
void toggle({InnerDrawerDirection? direction}) {
if (_previouslyOpened)
close(direction: direction);
else
open(direction: direction);
}
Open or Close InnerDrawer
void toggle({InnerDrawerDirection? direction}) {
if (_previouslyOpened)
close(direction: direction);
else
open(direction: direction);
}