Distribution_Exemplar constructor
Implementation
factory Distribution_Exemplar({
$core.double? value,
$27.Timestamp? timestamp,
$core.Iterable<$28.Any>? attachments,
}) {
final $result = create();
if (value != null) {
$result.value = value;
}
if (timestamp != null) {
$result.timestamp = timestamp;
}
if (attachments != null) {
$result.attachments.addAll(attachments);
}
return $result;
}