config method

Future<Response<Configuration>> config({
  1. required Object? body,
})

Get or Set Configuration @param body

Implementation

Future<chopper.Response<Configuration>> config({required Object? body}) {
  generatedMapping.putIfAbsent(EmptyReq, () => EmptyReq.fromJsonFactory);
  generatedMapping.putIfAbsent(
      Configuration, () => Configuration.fromJsonFactory);

  return _config(body: body);
}