closeEndDrawer method
void
closeEndDrawer()
Closes the end drawer if it is open. Example:
FxShellScope.of(context).closeEndDrawer();
Implementation
void closeEndDrawer() {
if (!isEndDrawerOpen) return;
_scaffold?.closeEndDrawer();
}