getById method

Implementation

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