listApiKeys method

Future<List<ApiHashModel>> listApiKeys()

Implementation

Future<List<ApiHashModel>> listApiKeys() async {
  var docs = await _collection.getAllDocuments();
  var res = docs.map((e) => ApiHashModel.fromJson(e)).toList();
  _apiKeysRepo.addAllToSavedKeys(res);
  return res;
}