InboxByNameResult constructor

InboxByNameResult({
  1. String? inboxId,
  2. required bool exists,
})

Returns a new InboxByNameResult instance.

Implementation

InboxByNameResult({
  this.inboxId,
  required this.exists,
});