KeyVal constructor

KeyVal({
  1. required dynamic key,
  2. required String val,
  3. String? icon,
  4. bool? badge,
  5. bool? isSelected,
})

Implementation

KeyVal({
  required this.key,
  required this.val,
  this.icon,
  this.badge,
  this.isSelected,
});