CommandGrid constructor

const CommandGrid({
  1. Key? key,
  2. required String title,
  3. required List<CommandModel> commands,
})

Implementation

const CommandGrid(
    {super.key,
      required this.logo,
      required this.title,
      required this.commands});