body property

  1. @TagNumber.new(5)
AnyValue get body

A value containing the body of the log record. Can be for example a human-readable string message (including multi-line) describing the event in a free form or it can be a structured data composed of arrays and maps of other values. Optional.

Implementation

@$pb.TagNumber(5)
$3.AnyValue get body => $_getN(3);
  1. @TagNumber.new(5)
set body (AnyValue v)

Implementation

@$pb.TagNumber(5)
set body($3.AnyValue v) {
  setField(5, v);
}