kemApiV3DealerOrgPut method

Future<Response<DealerOrgDTO>> kemApiV3DealerOrgPut({
  1. required DealerOrgUpdateV3Body? body,
})

Update the details of the dealer organization of the currently logged-in user

Implementation

Future<chopper.Response<DealerOrgDTO>> kemApiV3DealerOrgPut(
    {required DealerOrgUpdateV3Body? body}) {
  generatedMapping.putIfAbsent(
      DealerOrgDTO, () => DealerOrgDTO.fromJsonFactory);

  return _kemApiV3DealerOrgPut(body: body);
}