isDrawerOpen function

bool? isDrawerOpen(
  1. BuildContext context,
  2. bool value,
  3. double opacity
)

Implementation

bool? isDrawerOpen(BuildContext context, bool value, double opacity) {
  return Scaffold.of(context).isDrawerOpen;
}