followRoadInstruction property

String get followRoadInstruction

Get textual description for the follow road information.

Returns

  • Follow road instruction

Throws

  • An exception if it fails.

Implementation

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

  return resultString['result'];
}