ListSnapshotsResponse constructor
ListSnapshotsResponse({
- Iterable<
SnapshotDescription> ? snapshotDescriptions, - double? time,
Implementation
factory ListSnapshotsResponse({
$core.Iterable<SnapshotDescription>? snapshotDescriptions,
$core.double? time,
}) {
final $result = create();
if (snapshotDescriptions != null) {
$result.snapshotDescriptions.addAll(snapshotDescriptions);
}
if (time != null) {
$result.time = time;
}
return $result;
}