name property

  1. @TagNumber.new(3)
String get name

The name of the entity.

A name matching regex __.*__ is reserved/read-only. A name must not be more than 1500 bytes when UTF-8 encoded. Cannot be "".

Must be valid UTF-8 bytes. Legacy values that are not valid UTF-8 are encoded as __bytes<X>__ where <X> is the base-64 encoding of the bytes.

Implementation

@$pb.TagNumber(3)
$core.String get name => $_getSZ(2);
  1. @TagNumber.new(3)
set name (String v)

Implementation

@$pb.TagNumber(3)
set name($core.String v) {
  $_setString(2, v);
}