multiple method

Implementation

Future<ResponseItemDTO> multiple(
    {String? id, ProductMultiplePutBody? body}) async {
  return await _repository!.multiple(
    id: id,
    body: body,
  );
}