InputSecureValue constructor

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

Input Secure Value constructor.

Implementation

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