QueryHistoricalInfoResponse constructor

QueryHistoricalInfoResponse({
  1. HistoricalInfo? hist,
})

Implementation

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