logging property

Logging? get logging

Present if the server supports sending log messages to the client.

Implementation

Logging? get logging =>
    (_value['logging'] as Map?)?.cast<String, Object?>() as Logging?;
set logging (Logging? value)

Sets logging if it is null, otherwise throws.

Implementation

set logging(Logging? value) {
  assert(logging == null);
  _value['logging'] = value;
}