timeBeforeTurnPresentation property

int get timeBeforeTurnPresentation

Get the time interval before starting a turn presentation.

Returns

  • The time interval in seconds.

Throws

  • An exception if it fails.

Implementation

int get timeBeforeTurnPresentation {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'FollowPositionPreferences',
    'getTimeBeforeTurnPresentation',
  );

  return resultString['result'];
}
set timeBeforeTurnPresentation (int val)

Set the time interval before starting a turn presentation.

Parameters

  • IN val The time interval in seconds. -1 means using SDK default value.

Throws

  • An exception if it fails.

Implementation

set timeBeforeTurnPresentation(final int val) {
  objectMethod(
    _pointerId,
    'FollowPositionPreferences',
    'setTimeBeforeTurnPresentation',
    args: val,
  );
}