getCodes method

Future<List<Code>> getCodes(
  1. List<String> codeIds
)

Implementation

Future<List<Code>> getCodes(List<String> codeIds) async {
	return await CardinalSdkPlatformInterface.instance.apis.code.getCodes(
		_sdkId,
		codeIds,
	);
}