pickVideoFromGallery static method
Pick a video from gallery
Implementation
static Future<File?> pickVideoFromGallery() async {
final result = await _channel.invokeMethod<String>('pickVideoFromGallery');
return result != null ? File(result) : null;
}