OnImageInsertedCallback typedef

OnImageInsertedCallback = Future<void> Function(String image)

When a new image picked this callback will called and you might want to do some logic depending on your use case

Implementation

typedef OnImageInsertedCallback = Future<void> Function(
  String image,
);