CodeCommand constructor

const CodeCommand({
  1. required String title,
  2. required String command,
  3. List? arguments,
})

Implementation

const CodeCommand({
  required this.title,
  required this.command,
  this.arguments,
});