LogEntryOperation constructor
Implementation
factory LogEntryOperation({
$core.String? id,
$core.String? producer,
$core.bool? first,
$core.bool? last,
}) {
final $result = create();
if (id != null) {
$result.id = id;
}
if (producer != null) {
$result.producer = producer;
}
if (first != null) {
$result.first = first;
}
if (last != null) {
$result.last = last;
}
return $result;
}