matchMedicalDevices abstract method

Future<List<String>?> matchMedicalDevices(
  1. Filter filter
)

Load medical device ids from the database by filtering them using the provided Filter.

Filters are complex selectors that are built by combining basic building blocks. Examples of filters available for MedicalDevice are AllDevicesFilter and DevicesByIdsFilter. This method returns the list of the ids of the users matching the filter.

Parameters:

  • Filter filter (required): The Filter object that describes which condition(s) the elements whose the ids should be returned must fulfill

Implementation

Future<List<String>?> matchMedicalDevices(Filter filter,);