timeRelation property

TimeRelation timeRelation

The time relation for the service.

This can be used for determining how a time slider's start and end time are processed.

Implementation

TimeRelation get timeRelation {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ServiceTimeInfo_getTimeRelation(
      _handle,
      errorHandler,
    );
  });
  return TimeRelation._fromCoreValue(
    coreValue,
  );
}