description property

String? get description

An optional human-readable description which is rendered less prominently in the title of the view. Setting the title description to null, undefined, or empty string will remove the description from the view.

Implementation

_i2.String? get description => _i5.getProperty(
      this,
      'description',
    );
set description (String? value)

Implementation

set description(_i2.String? value) {
  _i5.setProperty(
    this,
    'description',
    value ?? _i6.undefined,
  );
}