copyWithWrapped method
Implementation
W2Box12 copyWithWrapped({Wrapped<String?>? code, Wrapped<String?>? amount}) {
return W2Box12(
code: (code != null ? code.value : this.code),
amount: (amount != null ? amount.value : this.amount));
}