closeDrawerNullable property

void closeDrawerNullable

Implementation

void get closeDrawerNullable {
  if (currentState == null) return;
  if (!currentState!.isDrawerOpen) return;
  currentState!.closeDrawer();
}