copyWith method

Implementation

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