Event constructor

const Event({
  1. required EventType type,
  2. String? pageId,
  3. String? dialogId,
  4. String? userActionId,
  5. String? systemActionId,
  6. String? errorId,
})

コンストラクタ

Implementation

const Event({
  required this.type,
  this.pageId,
  this.dialogId,
  this.userActionId,
  this.systemActionId,
  this.errorId,
});