WaitForSmsConditions constructor

WaitForSmsConditions({
  1. required String phoneNumberId,
  2. int? limit,
  3. required int count,
  4. int? delayTimeout,
  5. required int timeout,
  6. bool? unreadOnly,
  7. WaitForSmsConditionsCountTypeEnum? countType,
  8. List<SmsMatchOption>? matches = const [],
  9. WaitForSmsConditionsSortDirectionEnum? sortDirection,
  10. DateTime? since,
  11. DateTime? before,
})

Returns a new WaitForSmsConditions instance.

Implementation

WaitForSmsConditions({
  required this.phoneNumberId,
  this.limit,
  required this.count,
  this.delayTimeout,
  required this.timeout,
  this.unreadOnly,
  this.countType,
  this.matches = const [],
  this.sortDirection,
  this.since,
  this.before,
});