GearChoice constructor

GearChoice({
  1. required String key,
  2. required String description,
  3. required List<GearSelection> selections,
  4. List<int> preselect = const [],
  5. int? maxSelections,
})

Implementation

GearChoice({
  required this.key,
  required this.description,
  required this.selections,
  this.preselect = const [],
  this.maxSelections,
});