hasFollowRoadInfo property

bool get hasFollowRoadInfo

Whether follow-road guidance information is available for this instruction.

Returns

  • bool: true when follow-road data is present; otherwise false.

Implementation

bool get hasFollowRoadInfo {
  final OperationResult resultString = objectMethod(
    pointerId,
    'RouteInstructionBase',
    'hasFollowRoadInfo',
  );

  return resultString['result'];
}