waitFor method

Future<List<EmailPreview>?> waitFor(
  1. WaitForConditions waitForConditions
)

Wait for an email to match the provided filter conditions such as subject contains keyword.

Generic waitFor method that will wait until an inbox meets given conditions or return immediately if already met

Parameters:

Implementation

Future<List<EmailPreview>?> waitFor(WaitForConditions waitForConditions,) async {
  final response = await waitForWithHttpInfo(waitForConditions,);
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
  // When a remote server returns no body with a status of 204, we shall not decode it.
  // At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
  // FormatException when trying to decode an empty string.
  if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) {
    final responseBody = await _decodeBodyBytes(response);
    return (await apiClient.deserializeAsync(responseBody, 'List<EmailPreview>') as List)
      .cast<EmailPreview>()
      .toList();

  }
  return null;
}