readExifFromBytes function

Future<Map<String, dynamic>?> readExifFromBytes(
  1. Uint8List bytes
)

Reads the EXIF info from an image already loaded into memory

Implementation

Future<Map<String, dynamic>?> readExifFromBytes(Uint8List bytes) {
  return readExif(MemoryBlobReader(bytes));
}