MySelectorItem<T> constructor

const MySelectorItem<T>({
  1. required T value,
  2. required String title,
  3. String? subtitle,
  4. Widget? leading,
  5. List<Widget>? badges,
  6. bool enabled = true,
})

Implementation

const MySelectorItem({
  required this.value,
  required this.title,
  this.subtitle,
  this.leading,
  this.badges,
  this.enabled = true,
});