InboxByEmailAddressResult constructor

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

Returns a new InboxByEmailAddressResult instance.

Implementation

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