OnRequestPickVideo typedef
OnRequestPickVideo =
Future<String?> Function(BuildContext context, ImagePickerService imagePickerService)
When request picking an video, for example when the video button toolbar clicked, it should be null in case the user didn't choose any video or any other reasons, and it should be the video file path as string that is exists in case the user picked the video successfully
by default we already have a default implementation that show a dialog request the source for picking the video, from gallery, link or camera
Implementation
typedef OnRequestPickVideo = Future<String?> Function(
BuildContext context,
ImagePickerService imagePickerService,
);