imageType property

ImageType get imageType

Get the image type

Returns

  • The image type

Implementation

ImageType get imageType {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'ImgFlutter',
    'getType',
  );

  return ImageTypeExtension.fromId(resultString['result']);
}