OTPCollectView constructor

const OTPCollectView({
  1. Key? key,
  2. required String otp,
  3. required String heading,
  4. required Future<void> resendOTPSMS(),
  5. required Future<void> resendOTPWhatsapp(),
})

Implementation

const OTPCollectView({
  Key? key,
  required this.otp,
  required this.heading,
  required this.resendOTPSMS,
  required this.resendOTPWhatsapp,
}) : super(key: key);