matchCoding method

  1. @override
Future<List<String>?> matchCoding(
  1. Filter filter
)
override

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

@override
Future<List<String>?> matchCoding(Filter filter) => api.baseCodeApi.matchCodesBy(filter.toAbstractFilterDto());