PayPalDepositView constructor

const PayPalDepositView({
  1. Key? key,
  2. required OperationDepositMethod method,
  3. required CountryCode country,
  4. required Price nominal,
  5. OperationId? id,
})

Implementation

const PayPalDepositView({
  super.key,
  required this.method,
  required this.country,
  required this.nominal,
  this.id,
});