copyWith method
Data
copyWith(
{ - String? id,
- String? clientReferenceId,
- int? amount,
- String? currency,
- String? paymentMethod,
- dynamic nextAction,
- String? status,
- Metadata? metadata,
- DateTime? createdAt,
- DateTime? expireAt,
})
Implementation
Data copyWith({
String? id,
String? clientReferenceId,
int? amount,
String? currency,
String? paymentMethod,
dynamic nextAction,
String? status,
Metadata? metadata,
DateTime? createdAt,
DateTime? expireAt,
}) =>
Data(
id: id ?? this.id,
clientReferenceId: clientReferenceId ?? this.clientReferenceId,
amount: amount ?? this.amount,
currency: currency ?? this.currency,
paymentMethod: paymentMethod ?? this.paymentMethod,
nextAction: nextAction ?? this.nextAction,
status: status ?? this.status,
metadata: metadata ?? this.metadata,
createdAt: createdAt ?? this.createdAt,
expireAt: expireAt ?? this.expireAt,
);