hasRoadInfo property

bool get hasRoadInfo

Whether road information (names, shields) is available for this instruction.

Returns

  • bool: true when road info is present; otherwise false.

Also see:

Implementation

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

  return resultString['result'];
}