nextNextTurnImg property

Img get nextNextTurnImg

Get the image of the turn after the next one as a Img.

Prefer Img when you need SDK-managed metadata (uid, recommended size/aspectRatio, scalability) or to request raw image bytes; use getNextNextTurnImage when you only need raw image bytes.

Returns

  • (Img) Turn image object (validate before use).

See also:

Implementation

Img get nextNextTurnImg {
  final OperationResult resultString = objectMethod(
    pointerId,
    'NavigationInstruction',
    'getNextNextTurnImg',
  );

  return Img.init(resultString['result']);
}