deleteAllInboxesByTag method

Future<void> deleteAllInboxesByTag(
  1. String tag
)

Delete inboxes by tag

Permanently delete all inboxes by tag

Parameters:

Implementation

Future<void> deleteAllInboxesByTag(String tag,) async {
  final response = await deleteAllInboxesByTagWithHttpInfo(tag,);
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}