getAttributeBytes method

Future<Uint8List?> getAttributeBytes(
  1. String tag
)

Returns the raw bytes for the value of the requested tag inside the image file, or null if the tag is not contained.

Implementation

Future<Uint8List?> getAttributeBytes(String tag) =>
    channel.invokeMethod<Uint8List>("getAttributeBytes", tag);