copyWith method
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,
})
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,
);
}