description property

String? description

Gets the human-readable description of the context.

Return the human-readable description of the context.

Implementation

String? get description {
  return _description;
}
void description=(String? value)

Sets the human-readable description of the context.

  • value a new human readable description of the context.

Implementation

set description(String? value) {
  _description = value;
}