copyWith method

GetUpgradedGiftWithdrawalUrl copyWith({
  1. String? receivedGiftId,
  2. String? password,
})

Implementation

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