SearchGroup constructor

SearchGroup({
  1. required String id,
  2. required String name,
  3. String? description,
  4. int? icon,
  5. int? color,
  6. int priority = 0,
})

Creates a search group.

Implementation

SearchGroup({
  required this.id,
  required this.name,
  this.description,
  this.icon,
  this.color,
  this.priority = 0,
});