openDrawer method

void openDrawer()

Opens the drawer manually if it exists.

Implementation

void openDrawer() {
  if (_endDrawerKey.currentState != null && _endDrawerOpened.value) {
    _endDrawerKey.currentState!.close();
  }
  _drawerKey.currentState?.open();
}