SecureValue constructor

const SecureValue({
  1. required SecureValueTypeBase type,
  2. SecureDataBase? data,
  3. SecureFileBase? frontSide,
  4. SecureFileBase? reverseSide,
  5. SecureFileBase? selfie,
  6. List<SecureFileBase>? translation,
  7. List<SecureFileBase>? files,
  8. SecurePlainDataBase? plainData,
  9. required Uint8List hash,
})

Secure Value constructor.

Implementation

const SecureValue({
  required this.type,
  this.data,
  this.frontSide,
  this.reverseSide,
  this.selfie,
  this.translation,
  this.files,
  this.plainData,
  required this.hash,
}) : super._();