nextNextTurnImg property
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:
- getNextNextTurnImage - Simpler method to get turn image bytes.
- nextTurnImg - Image for the immediate next turn.
Implementation
Img get nextNextTurnImg {
final OperationResult resultString = objectMethod(
pointerId,
'NavigationInstruction',
'getNextNextTurnImg',
);
return Img.init(resultString['result']);
}