MmCommand constructor

MmCommand({
  1. String? id,
  2. String? token,
  3. int? createAt,
  4. int? updateAt,
  5. int? deleteAt,
  6. String? creatorId,
  7. String? teamId,
  8. String? trigger,
  9. String? method,
  10. String? username,
  11. String? iconUrl,
  12. bool? autoComplete,
  13. String? autoCompleteDesc,
  14. String? autoCompleteHint,
  15. String? displayName,
  16. String? description,
  17. String? url,
})

Returns a new MmCommand instance.

Implementation

MmCommand({
  this.id,
  this.token,
  this.createAt,
  this.updateAt,
  this.deleteAt,
  this.creatorId,
  this.teamId,
  this.trigger,
  this.method,
  this.username,
  this.iconUrl,
  this.autoComplete,
  this.autoCompleteDesc,
  this.autoCompleteHint,
  this.displayName,
  this.description,
  this.url,
});