isExpired property

bool get isExpired

Whether this event is expired (ended).

Returns

  • bool: true when the event has ended, otherwise false.

Also see:

Implementation

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

  return resultString['result'];
}