copyWith method

ResponseNota copyWith({
  1. String? numeroSessao,
  2. String? codStatus,
  3. String? mensagem,
  4. String? cod,
  5. String? mensagemSefaz,
  6. String? xmlBase64,
  7. String? timeStamp,
  8. String? chave,
  9. String? valorTotal,
  10. String? dadosCnpj,
  11. String? assinaturaQrcode,
  12. String? codAlerta,
})

Implementation

ResponseNota copyWith(
    {String? numeroSessao,
    String? codStatus,
    String? mensagem,
    String? cod,
    String? mensagemSefaz,
    String? xmlBase64,
    String? timeStamp,
    String? chave,
    String? valorTotal,
    String? dadosCnpj,
    String? assinaturaQrcode,
    String? codAlerta}) {
  return ResponseNota(
    numeroSessao: numeroSessao ?? this.numeroSessao,
    codStatus: codStatus ?? this.codStatus,
    mensagem: mensagem ?? this.mensagem,
    cod: cod ?? this.cod,
    mensagemSefaz: mensagemSefaz ?? this.mensagemSefaz,
    xmlBase64: xmlBase64 ?? this.xmlBase64,
    timeStamp: timeStamp ?? this.timeStamp,
    chave: chave ?? this.chave,
    valorTotal: valorTotal ?? this.valorTotal,
    dadosCnpj: dadosCnpj ?? this.dadosCnpj,
    codAlerta: codAlerta ?? this.codAlerta,
    assinaturaQrcode: assinaturaQrcode ?? this.assinaturaQrcode,
  );
}