getImage method
- Size? size,
- ImageFileFormat? format,
Get the landmark image.
Returns
- The image if it is available. Otherwise null.
Throws
- An exception if it fails.
Implementation
Uint8List? getImage({final Size? size, final ImageFileFormat? format}) {
return GemKitPlatform.instance.callGetImage(
_pointerId,
'Landmark',
size?.width.toInt() ?? -1,
size?.height.toInt() ?? -1,
format?.id ?? -1,
);
}