CreateWaitlistEntryRequest constructor

CreateWaitlistEntryRequest({
  1. required String emailAddress,
  2. bool? notify = true,
})

Returns a new CreateWaitlistEntryRequest instance.

Implementation

CreateWaitlistEntryRequest({
  required this.emailAddress,
  this.notify = true,
});