hasSignpostInfo property

bool get hasSignpostInfo

Whether signpost information is available for this instruction.

Returns

  • bool: true when signpost data is present; otherwise false.

Also see:

Implementation

bool get hasSignpostInfo {
  final OperationResult resultString = objectMethod(
    pointerId,
    'RouteInstructionBase',
    'hasSignpostInfo',
  );

  return resultString['result'];
}