deleteAllInboxesByName method

Future<void> deleteAllInboxesByName(
  1. String name
)

Delete inboxes by name

Permanently delete all inboxes by name

Parameters:

Implementation

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