description property

String get description

Gets the traffic event description

Returns

  • The description

Throws

  • An exception if it fails.

Implementation

String get description {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'TrafficEvent',
    'getDescription',
  );

  return resultString['result'];
}