copyWith method
Implementation
ResponseLog copyWith({
String? numeroSessao,
String? codStatus,
String? mensagem,
String? cod,
String? mensagemSefaz,
String? log,
}) {
return ResponseLog(
numeroSessao: numeroSessao ?? this.numeroSessao,
codStatus: codStatus ?? this.codStatus,
mensagem: mensagem ?? this.mensagem,
cod: cod ?? this.cod,
mensagemSefaz: mensagemSefaz ?? this.mensagemSefaz,
log: log ?? this.log,
);
}