InputOTP constructor

const InputOTP({
  1. Key? key,
  2. required List<InputOTPChild> children,
  3. OTPCodepointList? initialValue,
  4. ValueChanged<OTPCodepointList>? onChanged,
  5. ValueChanged<OTPCodepointList>? onSubmitted,
  6. bool useNativeContextMenu = false,
})

Implementation

const InputOTP({
  super.key,
  required this.children,
  this.initialValue,
  this.onChanged,
  this.onSubmitted,
  this.useNativeContextMenu = false,
});