isInBottomSheetDialogScope property

bool get isInBottomSheetDialogScope

Checks if latest route is bottom sheet or dialog

Implementation

bool get isInBottomSheetDialogScope {
  return latestGlobalRoute().name is BottomSheetType ||
      latestGlobalRoute().name is DialogType;
}