name property

String get name

Get public transit route instruction name

Returns

  • Instruction name

Throws

  • An exception if it fails.

Implementation

String get name {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'PTRouteInstruction',
    'getName',
  );

  return resultString['result'];
}