PinCodeScreen constructor

const PinCodeScreen({
  1. Key? key,
  2. required double amount,
  3. void onConfirm(
    1. String encryptedPin
    )?,
  4. VoidCallback? onCancel,
  5. bool backButton = false,
})

PinCodeScreen constructor

Implementation

const PinCodeScreen({
  super.key,
  required this.amount,
  this.onConfirm,
  this.onCancel,
  this.backButton = false,
});