BasicDrawer constructor

const BasicDrawer({
  1. Key? key,
  2. String? title,
  3. List<List<BasicDrawerMenu>>? menus,
})

Implementation

const BasicDrawer({
  Key? key,
  this.title,
  this.menus,
}) : super(key: key);