hasFollowRoadInfo property
Check if follow road information is available.
Returns
- True if follow road information is available, false otherwise
Throws
- An exception if it fails.
Implementation
bool get hasFollowRoadInfo {
final OperationResult resultString = objectMethod(
_pointerId,
'RouteInstructionBase',
'hasFollowRoadInfo',
);
return resultString['result'];
}