matchAgendasBy method

Future<List<String>> matchAgendasBy(
  1. BaseFilterOptions<Agenda> filter
)

Implementation

Future<List<String>> matchAgendasBy(BaseFilterOptions<Agenda> filter) async {
	return await CardinalSdkPlatformInterface.instance.apis.agenda.matchAgendasBy(
		_sdkId,
		filter,
	);
}