copyWith method
TransferSentInfo
copyWith({
- int? amountInCents,
- String? amountLocalized,
- DateTime? createdAt,
- String? transferId,
- AccountInfo? receiver,
Implementation
TransferSentInfo copyWith({
int? amountInCents,
String? amountLocalized,
DateTime? createdAt,
String? transferId,
AccountInfo? receiver,
}) {
return TransferSentInfo(
amountInCents: amountInCents ?? this.amountInCents,
amountLocalized: amountLocalized ?? this.amountLocalized,
createdAt: createdAt ?? this.createdAt,
transferId: transferId ?? this.transferId,
receiver: receiver ?? this.receiver,
);
}