title property

  1. @TagNumber.new(2)
String get title

An optional title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.

Implementation

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

Implementation

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