fetchAll method

Future<List<ApiKey>> fetchAll()

Fetches all API keys associated with the user.

Implementation

Future<List<ApiKey>> fetchAll() async {
  _user._ensureLoggedIn('fetch all API keys');

  return realmCore.fetchAllApiKeys(_user);
}