WaitForConditions constructor

WaitForConditions({
  1. required String inboxId,
  2. int? count,
  3. int? delayTimeout,
  4. required int timeout,
  5. bool? unreadOnly,
  6. WaitForConditionsCountTypeEnum? countType,
  7. List<MatchOption>? matches = const [],
  8. WaitForConditionsSortDirectionEnum? sortDirection,
  9. DateTime? since,
  10. DateTime? before,
})

Returns a new WaitForConditions instance.

Implementation

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