realisticNextTurnImg property

AbstractGeometryImg get realisticNextTurnImg

Get the image of the realistic next turn image

Parameters

Returns

  • The image for the realistic next turn image. The user is responsible to check if the image is valid.

Throws

  • An exception if it fails.

Implementation

AbstractGeometryImg get realisticNextTurnImg {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'RouteInstructionBase',
    'getRealisticNextTurnImg',
  );

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