MenuItemView constructor Null safety

MenuItemView(
  1. {String? title,
  2. String? description,
  3. Function? onTap,
  4. dynamic onChanged(
    1. bool? value
    )?,
  5. Widget? child,
  6. bool? isChecked,
  7. Widget? suffixView}
)

Implementation

MenuItemView({
  this.title,
  this.description,
  this.onTap,
  this.onChanged,
  this.child,
  this.isChecked,
  this.suffixView,
});