value property

  1. @TagNumber.new(4)
Expr get value

Required. The value assigned to the key.

If the optional_entry field is true, the expression must resolve to an optional-typed value. If the optional value is present, the key will be set; however, if the optional value is absent, the key will be unset.

Implementation

@$pb.TagNumber(4)
Expr get value => $_getN(3);
  1. @TagNumber.new(4)
set value (Expr value)

Implementation

@$pb.TagNumber(4)
set value(Expr value) => $_setField(4, value);