MainDrawer constructor

const MainDrawer({
  1. Key? key,
  2. bool showUpload = false,
  3. List<Widget> children = const [],
})

Implementation

const MainDrawer({
  Key? key,
  this.showUpload = false,
  this.children = const [],
}) : super(key: key);