laneImg property

LaneImg get laneImg

Get the image of the lane image

Parameters

Returns

  • The image for the lane image. The user is responsible to check if the image is valid.

Throws

  • An exception if it fails.

Implementation

LaneImg get laneImg {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'NavigationInstruction',
    'getLaneImg',
  );

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