followRoadInstruction property

String get followRoadInstruction

Localized textual description for follow-road guidance associated with this instruction.

Returns

  • String: follow-road instruction text, or an empty string if not available.

Implementation

String get followRoadInstruction {
  final OperationResult resultString = objectMethod(
    pointerId,
    'RouteInstructionBase',
    'getFollowRoadInstruction',
  );

  return resultString['result'];
}