SecureOtpSheet constructor

const SecureOtpSheet({
  1. Key? key,
  2. required String cardLastFour,
  3. required VoidCallback onCardVerified,
  4. bool showCardVerifiedSheet = true,
  5. String? amountLabel,
})

Implementation

const SecureOtpSheet({
  super.key,
  required this.cardLastFour,
  required this.onCardVerified,
  this.showCardVerifiedSheet = true,
  this.amountLabel,
});