SmallScreenDrawer constructor

const SmallScreenDrawer({
  1. Key? key,
  2. Widget? leading,
  3. Widget? trailing,
  4. required List<TabItem> children,
  5. required String title,
})

Implementation

const SmallScreenDrawer({
  super.key,
  this.leading,
  this.trailing,
  required this.children,
  required this.title,
});