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