CommandArgs constructor

CommandArgs({
  1. required String msg,
  2. String? editEventId,
  3. Event? inReplyTo,
  4. required Room room,
  5. String? txid,
  6. String? threadRootEventId,
  7. String? threadLastEventId,
})

Implementation

CommandArgs(
    {required this.msg,
    this.editEventId,
    this.inReplyTo,
    required this.room,
    this.txid,
    this.threadRootEventId,
    this.threadLastEventId});