getExtraImage method

Uint8List? getExtraImage({
  1. Size? size,
  2. ImageFileFormat? format,
})

Get extra image

Returns

  • Extra image if it is available. Null otherwise

Throws

  • An exception if it fails.

Implementation

Uint8List? getExtraImage({final Size? size, final ImageFileFormat? format}) {
  return GemKitPlatform.instance.callGetImage(
    _pointerId,
    'LandmarkgetExtraImage',
    size?.width.toInt() ?? -1,
    size?.height.toInt() ?? -1,
    format?.id ?? -1,
  );
}