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