QueryHistoricalInfoResponse constructor

QueryHistoricalInfoResponse({
  1. HistoricalInfo? hist,
})

Implementation

factory QueryHistoricalInfoResponse({
  $7.HistoricalInfo? hist,
}) {
  final _result = create();
  if (hist != null) {
    _result.hist = hist;
  }
  return _result;
}