GetAddressHistoryResponse constructor

GetAddressHistoryResponse({
  1. Iterable<HistoryInfo>? historyInfo,
})

Implementation

factory GetAddressHistoryResponse({
  $core.Iterable<HistoryInfo>? historyInfo,
}) {
  final _result = create();
  if (historyInfo != null) {
    _result.historyInfo.addAll(historyInfo);
  }
  return _result;
}