getAll method

Future<List<Resource>> getAll(
  1. String? password
)

returns all resources in the db, including historical versions

Implementation

Future<List<Resource>> getAll(String? password) async {
  final resourceTypes = await _getResourceTypes(password);

  final resourceList =
      await getResourceType(password, resourceTypeStrings: resourceTypes);
  return resourceList;
}