AssinaturaDigitalModel constructor

AssinaturaDigitalModel({
  1. String? certificadoPath,
  2. String? certificadoPassword,
  3. String? certificadoBase64,
  4. String? chavePrivada,
  5. String? certificadoSerial,
  6. String? certificadoSubject,
  7. DateTime? certificadoValidadeInicio,
  8. DateTime? certificadoValidadeFim,
  9. bool isValido = false,
})

Implementation

AssinaturaDigitalModel({
  this.certificadoPath,
  this.certificadoPassword,
  this.certificadoBase64,
  this.chavePrivada,
  this.certificadoSerial,
  this.certificadoSubject,
  this.certificadoValidadeInicio,
  this.certificadoValidadeFim,
  this.isValido = false,
});