kemApiV3DevicesVerificationGet method

Future<Response<DeviceVerificationDTO>> kemApiV3DevicesVerificationGet({
  1. String? serialNumber,
  2. String? controllerPin,
})

Get verification information on the given serial number and controller PIN. @param serialNumber @param controllerPin

Implementation

Future<chopper.Response<DeviceVerificationDTO>>
    kemApiV3DevicesVerificationGet({
  String? serialNumber,
  String? controllerPin,
}) {
  generatedMapping.putIfAbsent(
      DeviceVerificationDTO, () => DeviceVerificationDTO.fromJsonFactory);

  return _kemApiV3DevicesVerificationGet(
      serialNumber: serialNumber, controllerPin: controllerPin);
}