MethodChannelFlutterKeystore class
Android implementation of FlutterKeystorePlatform using method channels.
This class provides the Android-specific implementation for secure key-value storage using Android's KeyStore system through platform method channels.
Method Channel
Uses the method channel com.bleckshiba.dev/keystore to communicate
with the native Android implementation.
- Inheritance
-
- Object
- PlatformInterface
- FlutterKeystorePlatform
- MethodChannelFlutterKeystore
Constructors
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- methodChannel → MethodChannel
-
The method channel used to communicate with the native platform.
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
delete(
String key, {String? storageName}) → Future< void> -
Deletes a value from the secure keystore.
override
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
read(
String key, {String? storageName}) → Future< String?> -
Reads a value from the secure keystore.
override
-
toString(
) → String -
A string representation of this object.
inherited
-
write(
String key, String value, {String? storageName}) → Future< void> -
Writes a value to the secure keystore.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited