KeyGroupConfig constructor

KeyGroupConfig({
  1. required List<String> items,
  2. required String name,
  3. String? comment,
})

Implementation

KeyGroupConfig({
  required this.items,
  required this.name,
  this.comment,
});