description property

  1. @TagNumber.new(13)
String get description

@mandatory

@description The core detailed description or summary of the project.

@example "This is an exploratory project for Customer A."

@regex ^0-9A-Za-z +$

@format Alphanumeric characters and spaces only. Must not be empty.

Implementation

@$pb.TagNumber(13)
$core.String get description => $_getSZ(5);
  1. @TagNumber.new(13)
set description (String value)

Implementation

@$pb.TagNumber(13)
set description($core.String value) => $_setString(5, value);