copyWith method
ElginResponse
copyWith({
- String? funcao,
- String? mensagem,
- ElginTransactionResponse? transaction,
- int? resultCode,
Implementation
ElginResponse copyWith({
String? funcao,
String? mensagem,
ElginTransactionResponse? transaction,
int? resultCode,
}) {
return ElginResponse(
funcao: funcao ?? this.funcao,
mensagem: mensagem ?? this.mensagem,
transaction: transaction ?? this.transaction,
resultCode: resultCode ?? this.resultCode,
);
}