listMailboxes method
Implementation
Future<List<Mailbox>> listMailboxes(String projectId, {int count = 100, int offset = 0, String? filter}) async {
final page = await listMailboxesPage(projectId, count: count, offset: offset, filter: filter);
return page.mailboxes;
}