Encryptionextraction class

Represents the extracted components of an encrypted response.

This class is used to store and access the following components:

  • encryptedKey: The encrypted AES key as a string.
  • encryptedData: The encrypted payload as a string.
  • iv: The initialization vector (IV) as a string.

Provides a utility getter to retrieve all components as a map. Constructs an instance of Encryptionextraction.

  • encryptedKey: The encrypted AES key (required).
  • encryptedData: The encrypted payload (required).
  • iv: The initialization vector (required).

Constructors

Encryptionextraction({required String encryptedKey, required String encryptedData, required String iv})

Properties

encryptedData String
final
encryptedKey String
final
hashCode int
The hash code for this object.
no setterinherited
init Map<String, String>
no setter
iv String
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

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