getCode method

Future<Code> getCode(
  1. String codeId
)

Implementation

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