DrawerThemeModifier constructor

const DrawerThemeModifier({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
  4. required DrawerThemeData data,
})

Creates a theme that defines the DrawerThemeData properties for a Drawer.

Implementation

const DrawerThemeModifier({
  super.key,
  super.child,
  super.modifierKey,
  required this.data,
});