openDrawerNullable property

void openDrawerNullable

Implementation

void get openDrawerNullable {
  if (currentState == null) return;
  if (currentState!.isDrawerOpen) return;
  currentState!.openDrawer();
}