copyWith method
Implementation
BankTransferSweep copyWith(
{String? id,
DateTime? createdAt,
String? amount,
String? isoCurrencyCode}) {
return BankTransferSweep(
id: id ?? this.id,
createdAt: createdAt ?? this.createdAt,
amount: amount ?? this.amount,
isoCurrencyCode: isoCurrencyCode ?? this.isoCurrencyCode);
}