OnVideoInsertedCallback typedef

OnVideoInsertedCallback = Future<void> Function(String video)

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

Implementation

typedef OnVideoInsertedCallback = Future<void> Function(
  String video,
);