ModulaDrawerItem constructor

const ModulaDrawerItem({
  1. Widget? icon,
  2. String? title,
  3. String? subtitle,
  4. Widget? trailing,
  5. VoidCallback? onTap,
  6. bool isSelected = false,
  7. bool isDivider = false,
  8. bool closeOnTap = true,
})

Implementation

const ModulaDrawerItem({
  this.icon,
  this.title,
  this.subtitle,
  this.trailing,
  this.onTap,
  this.isSelected = false,
  this.isDivider = false,
  this.closeOnTap = true,
});