copyWith method
WalletCreateResponse
copyWith({
- String? requestId,
- String? walletId,
- WalletBalance? balance,
- WalletNumbers? numbers,
- String? recipientId,
Implementation
WalletCreateResponse copyWith(
{String? requestId,
String? walletId,
WalletBalance? balance,
WalletNumbers? numbers,
String? recipientId}) {
return WalletCreateResponse(
requestId: requestId ?? this.requestId,
walletId: walletId ?? this.walletId,
balance: balance ?? this.balance,
numbers: numbers ?? this.numbers,
recipientId: recipientId ?? this.recipientId);
}