using Borepin.Service; using System.Threading.Tasks; using Xamarin.Essentials; namespace Borepin.Droid.Services { public class SecretService : ISecretService { public Task GetAsync(string key) { return SecureStorage.GetAsync(key); } public bool Remove(string key) { return SecureStorage.Remove(key); } public void RemoveAll() { SecureStorage.RemoveAll(); } public Task SetAsync(string key, string value) { return SecureStorage.SetAsync(key, value); } } }