kemproApiV2OrgDevicesVerifyGet method

Future<Response<DeviceVerificationV2>> kemproApiV2OrgDevicesVerifyGet({
  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<DeviceVerificationV2>>
    kemproApiV2OrgDevicesVerifyGet({
  String? serialNumber,
  String? controllerPin,
}) {
  generatedMapping.putIfAbsent(
      DeviceVerificationV2, () => DeviceVerificationV2.fromJsonFactory);

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