SecureStore class abstract

Inheritance
Implementers

Constructors

SecureStore()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

bytesToWords(Uint8List secret) List<String>
Converts a Uint8List to a list of words by decoding it as UTF-8 and splitting it by spaces.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
privateKeyOf(String id) String
seedPhraseOf(String id) String
toString() String
A string representation of this object.
inherited
when<T>({required FutureOr<T> biometric(BiometricStore), required FutureOr<T> password(PasswordStore)}) Future<T>
Uses the biometric function if the store is a BiometricStore and the password function if the store is a PasswordStore.
wordsToBytes(List<String> words) Uint8List
Converts words to Uint8List by concatenating them with a space separator and encoding them as UTF-8.

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

get({bool passwordFallbackEnabled = true}) Future<SecureStore>
Returns a SecureStore that uses biometric authentication if available.
hasBiometricStore() Future<bool>
Returns true if the device has biometric capabilities and has them setup.
override