name property

String name

Gets the context name.

Return the context name

Implementation

String get name {
  return _name;
}
void name=(String? value)

Sets the context name.

  • value a new name for the context.

Implementation

set name(String? value) {
  _name = value ?? 'unknown';
}