timeBeforeTurnPresentation property
Get the time interval before starting a turn presentation.
Returns
- The time interval in seconds.
Implementation
int get timeBeforeTurnPresentation {
final OperationResult resultString = objectMethod(
_pointerId,
'FollowPositionPreferences',
'getTimeBeforeTurnPresentation',
dependencyId: _mapPointerId,
);
return resultString['result'];
}
Set the time interval before starting a turn presentation.
Parameters
- IN val The time interval in seconds. -1 means using SDK default value.
Implementation
set timeBeforeTurnPresentation(final int val) {
objectMethod(
_pointerId,
'FollowPositionPreferences',
'setTimeBeforeTurnPresentation',
args: val,
dependencyId: _mapPointerId,
);
}