Last updated:
0 purchases
flutter keystore
flutter_keystore #
Android KeyStore System for Flutter application
Installation #
dependencies:
flutter_keystore:
url: https://github.com/TimothyGCY/flutter_keystore.git
copied to clipboard
Usage #
// Instantiate plugin
final FlutterKeyStore keyStore = FlutterKeyStore();
// To write data into keystore
await keyStore.write('key', 'value');
// To read data from keystore by key
await keyStore.read('key');
// To delete data from keystore by key
await keyStore.delete('key');
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.