requestService method

Future<List<Uint8List>> requestService({
  1. required List<Uint8List> nodeCodeList,
})

DOC:

Implementation

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