public async Task <byte[]> PickPhoto()
        {
            MediaFile file = await _photoCaptureHelper.PickPhoto();

            byte[] imageBytes = GetImage(file);

            return(imageBytes);
        }