GetBundleHistoryResponse constructor
- Iterable<
BundleRevisionHistory> ? history,
Implementation
factory GetBundleHistoryResponse({
$core.Iterable<BundleRevisionHistory>? history,
}) {
final result = create();
if (history != null) result.history.addAll(history);
return result;
}