roadname property

String get roadname

The human-readable name of the road (for example A1, Main St).

Implementation

String get roadname {
  final OperationResult result = objectMethod(
    pointerId,
    'RoadInfo',
    'getRoadname',
  );
  return result['result'];
}