description property

String get description

Human readable description of the traffic event.

For user-defined roadblocks this may contain the user-supplied id or additional metadata.

Returns

  • String: descriptive text (empty string when no description is available).

Implementation

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

  return resultString['result'];
}