contextId property

String contextId

Gets the unique context id. Usually it is the current host name.

Return the unique context id.

Implementation

String get contextId {
  return _contextId;
}
void contextId=(String value)

Sets the unique context id.

  • value a new unique context id.

Implementation

set contextId(String value) {
  _contextId = value;
}