hasRoadInfo property

bool get hasRoadInfo

Check if road information is available.

Returns

  • True if road information is available, false otherwise

Throws

  • An exception if it fails.

Implementation

bool get hasRoadInfo {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'RouteInstructionBase',
    'hasRoadInfo',
  );

  return resultString['result'];
}