hasAccount method

Future<bool> hasAccount(
  1. Session session
)

Determines whether the current session has an associated email account.

Implementation

Future<bool> hasAccount(final Session session) async =>
    await utils.getAccount(session) != null;