ImageEditingCompleteCallback typedef

ImageEditingCompleteCallback = Future<void> Function(Uint8List bytes)

A typedef representing a callback function invoked when image editing is complete.

This callback typically receives the edited image as bytes in the form of a Uint8List. It should return a Future indicating the completion of any asynchronous operations.

Implementation

typedef ImageEditingCompleteCallback = Future<void> Function(Uint8List bytes);