turnImg property

Img get turnImg

Get the turn image

Returns

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

Implementation

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

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