hasRoadInfo property
bool
get
hasRoadInfo
Whether road information (names, shields) is available for this instruction.
Returns
bool:truewhen road info is present; otherwisefalse.
Also see:
- roadInfo - detailed road information.
Implementation
bool get hasRoadInfo {
final OperationResult resultString = objectMethod(
pointerId,
'RouteInstructionBase',
'hasRoadInfo',
);
return resultString['result'];
}