AvailableCommand constructor

AvailableCommand({
  1. required String name,
  2. required String description,
  3. AvailableCommandInput? input,
  4. AcpJsonObject? meta,
})

Creates a AvailableCommand value.

Implementation

AvailableCommand({
  required this.name,
  required this.description,
  this.input,
  this.meta,
});