Distribution_Exemplar constructor

Distribution_Exemplar({
  1. double? value,
  2. Timestamp? timestamp,
  3. Iterable<Any>? attachments,
})

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;
}