isActive property

bool get isActive

Whether this event is currently active (started).

Returns

  • bool: true when the event is active, otherwise false.

Also see:

Implementation

bool get isActive {
  final OperationResult resultString = objectMethod(
    pointerId,
    'TrafficEvent',
    'isActive',
  );

  return resultString['result'];
}