exitDetails property

String get exitDetails

Get the exit route instruction text.

If the instruction is not an exit, returns empty string.

Returns

  • String that contains exit route instruction text

Throws

  • An exception if it fails.

Implementation

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

  return resultString['result'];
}