turnImg property

Img get turnImg

Get the turn image

Returns

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

Throws

  • An exception if it fails.

Implementation

Img get turnImg {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'RouteInstructionBase',
    'getTurnImg',
  );

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