CommandGroup constructor

const CommandGroup({
  1. String? heading,
  2. required List<CommandItem> items,
})

Implementation

const CommandGroup({
  this.heading,
  required this.items,
});