requestServiceV2 method
DOC:
Implementation
Future<FeliCaRequestServiceV2ResponseIOS> requestServiceV2({
required List<Uint8List> nodeCodeList,
}) {
return hostApi
.feliCaRequestServiceV2(
handle: _handle,
nodeCodeList: nodeCodeList,
)
.then((value) => FeliCaRequestServiceV2ResponseIOS(
statusFlag1: value.statusFlag1,
statusFlag2: value.statusFlag2,
encryptionIdentifier: value.encryptionIdentifier,
nodeKeyVersionListAes: List.from(value.nodeKeyVersionListAES),
nodeKeyVersionListDes: List.from(value.nodeKeyVersionListDES),
));
}