matchCoding abstract method
Load coding 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 Coding are AllCodingsFilter and CodingsByIdsFilter. This method returns a paginated list of coding (with a cursor that lets you query the following items).
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>?> matchCoding(Filter filter,);