image property

SignpostImg get image

Get the signpost image as a SignpostImg.

Prefer SignpostImg when you need SDK-managed metadata (uid, recommended size/aspectRatio, scalability) or to request raw image bytes; use getImage when you only need the raster image bytes.

Returns

  • SignpostImg: an abstract image object containing metadata and rendering helpers.

See also:

  • SignpostImg — image helpers for signpost rendering.

Implementation

SignpostImg get image {
  final OperationResult resultString = objectMethod(
    pointerId,
    'SignpostDetails',
    'getImg',
  );

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