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