hasTurnInfo property

bool get hasTurnInfo

Whether detailed turn information is available for this instruction.

Returns

  • bool: true when turn metadata is available; otherwise false.

Also see:

Implementation

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

  return resultString['result'];
}