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 _user.handle.fetchAllApiKeys(_user.app.handle);
}