value property

  1. @TagNumber(2)
Any value

The option's value packed in an Any message. If the value is a primitive, the corresponding wrapper type defined in google/protobuf/wrappers.proto should be used. If the value is an enum, it should be stored as an int32 value using the google.protobuf.Int32Value type.

Implementation

@$pb.TagNumber(2)
$1.Any get value => $_getN(1);
  1. @TagNumber(2)
void value=(Any v)

Implementation

@$pb.TagNumber(2)
set value($1.Any v) { setField(2, v); }