DrawerTheme constructor Null safety
- {Key? key,
- required DrawerThemeData data,
- required Widget child}
Creates a theme that defines the DrawerThemeData properties for a Drawer.
Implementation
const DrawerTheme({
super.key,
required this.data,
required super.child,
}) : assert(data != null);