EncryptionDecryptionsPlatform class abstract

Inheritance
  • Object
  • PlatformInterface
  • EncryptionDecryptionsPlatform
Implementers

Constructors

EncryptionDecryptionsPlatform.new()
Constructs a EncryptionDecryptionsPlatform.

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

decryptdouble({required String key, required String data}) Future<double?>
decryptInt({required String key, required String data}) Future<int?>
decryptList({required String key, required String data}) Future<List?>
decryptMap({required String key, required String data}) Future<Map?>
decryptString({required String key, required String data}) Future<String?>
encryptdouble({required String key, required double data}) Future<String?>
encryptInt({required String key, required int data}) Future<String?>
encryptList({required String key, required List data}) Future<String?>
encryptMap({required String key, required Map data}) Future<String?>
encryptString({required String key, required String data}) Future<String?>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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

Static Properties

instance EncryptionDecryptionsPlatform
The default instance of EncryptionDecryptionsPlatform to use.
getter/setter pair