using System.Threading.Tasks; using Xamarin.Essentials; namespace InABox.Mobile { public class MobileDocumentVideoLibrarySource : MobileVideoSource { public MobileDocumentVideoLibrarySource(MobileDocumentVideoLibraryOptions options) : base(options) { } protected override async Task IsEnabled() => await IsEnabled(); protected override async Task Capture() => await MediaPicker.PickVideoAsync(); } }