Command constructor

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

Implementation

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