getTimeTables method

Future<List<DecryptedTimeTable>> getTimeTables(
  1. List<String> timeTableIds
)

Implementation

Future<List<DecryptedTimeTable>> getTimeTables(List<String> timeTableIds) async {
	return await CardinalSdkPlatformInterface.instance.apis.timeTable.getTimeTables(
		_sdkId,
		timeTableIds,
	);
}