copyWith method

  1. @override
DepositRequest copyWith({
  1. int? amount,
  2. String? orderId,
})

Создает экземпляр с заданными параметрами

Implementation

@override
DepositRequest copyWith({
  int? amount,
  String? orderId,
}) {
  return DepositRequest(
    amount: amount ?? this.amount,
    orderId: orderId ?? this.orderId,
  );
}