copyWith method
WalletTransactionCounterparty
copyWith({
- String? name,
- WalletTransactionCounterpartyNumbers? numbers,
Implementation
WalletTransactionCounterparty copyWith(
{String? name, WalletTransactionCounterpartyNumbers? numbers}) {
return WalletTransactionCounterparty(
name: name ?? this.name, numbers: numbers ?? this.numbers);
}