WaitForSingleSmsOptions constructor

WaitForSingleSmsOptions({
  1. required String phoneNumberId,
  2. required int timeout,
  3. bool? unreadOnly,
  4. DateTime? before,
  5. DateTime? since,
  6. WaitForSingleSmsOptionsSortDirectionEnum? sortDirection,
  7. int? delay,
})

Returns a new WaitForSingleSmsOptions instance.

Implementation

WaitForSingleSmsOptions({
  required this.phoneNumberId,
  required this.timeout,
  this.unreadOnly,
  this.before,
  this.since,
  this.sortDirection,
  this.delay,
});