copyWith method
Создает экземпляр с заданными параметрами
Implementation
@override
DepositRequest copyWith({
int? amount,
String? orderId,
}) {
return DepositRequest(
amount: amount ?? this.amount,
orderId: orderId ?? this.orderId,
);
}