createCodesInGroup method

Future<List<Code>> createCodesInGroup(
  1. String groupId,
  2. List<Code> codeBatch
)

Implementation

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