kemApiV3DevicesCellplanIccidGet method

Future<Response<CellularPlanDTO>> kemApiV3DevicesCellplanIccidGet({
  1. required String? iccid,
})

Returns cellular plan information for a given ICCID string @param iccid

Implementation

Future<chopper.Response<CellularPlanDTO>> kemApiV3DevicesCellplanIccidGet(
    {required String? iccid}) {
  generatedMapping.putIfAbsent(
      CellularPlanDTO, () => CellularPlanDTO.fromJsonFactory);

  return _kemApiV3DevicesCellplanIccidGet(iccid: iccid);
}