getAllActiveResources method

Future<List<Resource>> getAllActiveResources({
  1. String? pw,
})

returns all resources in the db, including historical versions

Implementation

Future<List<Resource>> getAllActiveResources({
  String? pw,
}) async =>
    getActiveResourcesOfType(resourceTypes: _types.toList(), pw: pw);