SecureCredentialsEncrypted constructor

const SecureCredentialsEncrypted({
  1. required Uint8List data,
  2. required Uint8List hash,
  3. required Uint8List secret,
})

Secure Credentials Encrypted constructor.

Implementation

const SecureCredentialsEncrypted({
  required this.data,
  required this.hash,
  required this.secret,
}) : super._();