CommandCategory constructor

const CommandCategory({
  1. Key? key,
  2. required List<Widget> children,
  3. Widget? title,
})

Implementation

const CommandCategory({
  super.key,
  required this.children,
  this.title,
});