projectIdCopyPost method

Future<Response<FwStandardModelsCopyLogicResponse>> projectIdCopyPost({
  1. required String? id,
  2. required FwStandardModelsCopyLogicRequest? body,
})

@param id

Implementation

Future<chopper.Response<FwStandardModelsCopyLogicResponse>>
projectIdCopyPost({
  required String? id,
  required FwStandardModelsCopyLogicRequest? body,
}) {
  generatedMapping.putIfAbsent(
    FwStandardModelsCopyLogicResponse,
    () => FwStandardModelsCopyLogicResponse.fromJsonFactory,
  );

  return _projectIdCopyPost(id: id, body: body);
}