MoonCodeInputField constructor

const MoonCodeInputField({
  1. Key? key,
  2. int length = 6,
  3. required ValueChanged<String> onCompleted,
})

Implementation

const MoonCodeInputField({
  super.key,
  this.length = 6,
  required this.onCompleted,
});