roadInfoImg property

RoadInfoImg get roadInfoImg

Get the image of the road info

Parameters

Returns

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

Throws

  • An exception if it fails.

Implementation

RoadInfoImg get roadInfoImg {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'RouteInstructionBase',
    'getRoadInfoImg',
  );

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