InboxRulesetDto constructor

InboxRulesetDto({
  1. required String id,
  2. String? inboxId,
  3. required InboxRulesetDtoScopeEnum scope,
  4. required InboxRulesetDtoActionEnum action,
  5. required String target,
  6. required InboxRulesetDtoHandlerEnum handler,
  7. required DateTime createdAt,
})

Returns a new InboxRulesetDto instance.

Implementation

InboxRulesetDto({
  required this.id,
  this.inboxId,
  required this.scope,
  required this.action,
  required this.target,
  required this.handler,
  required this.createdAt,
});