exitDetails property

String get exitDetails

Exit instruction text when this instruction is an exit.

Returns

  • String: exit text, or an empty string when the instruction is not an exit.

See also:

Implementation

String get exitDetails {
  final OperationResult resultString = objectMethod(
    pointerId,
    'RouteInstructionBase',
    'getExitDetails',
  );

  return resultString['result'];
}