Distribution_Exemplar constructor
Implementation
factory Distribution_Exemplar({
$core.double? value,
$0.Timestamp? timestamp,
$core.Iterable<$1.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;
}