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