GetBundleHistoryResponse constructor

GetBundleHistoryResponse({
  1. Iterable<BundleRevisionHistory>? history,
})

Implementation

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