UpDrawerItem constructor

UpDrawerItem({
  1. required IconData icon,
  2. required String title,
  3. required Function onTap,
  4. String? path,
  5. GlobalKey<State<StatefulWidget>>? key,
})

Implementation

UpDrawerItem({
  required this.icon,
  required this.title,
  required this.onTap,
  this.path,
  this.key,
});