copyWith method
Implementation
GetUpgradedGiftWithdrawalUrl copyWith({
String? receivedGiftId,
String? password,
}) => GetUpgradedGiftWithdrawalUrl(
receivedGiftId: receivedGiftId ?? this.receivedGiftId,
password: password ?? this.password,
);