mode property

  1. @TagNumber(3)
String mode

The mode of the field. Possible values include:

  • REQUIRED, if it is a required field.
  • NULLABLE, if it is an optional field.
  • REPEATED, if it is a repeated field.

Implementation

@$pb.TagNumber(3)
$core.String get mode => $_getSZ(2);
  1. @TagNumber(3)
void mode=(String v)

Implementation

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