requestService method
Implementation
Future<List<Uint8List>> requestService({
required List<Uint8List> nodeCodeList,
}) {
return hostApi
.feliCaRequestService(handle: _handle, nodeCodeList: nodeCodeList)
.then((value) => List.from(value));
}