CustomPinCodeField constructor
const
CustomPinCodeField(- {Key? key,
- required int length,
- required void onChanged(
- String value
),
- bool beforeTextPaste(
- String? text
)?,
- String? hintCharacter,
- String? dialogTitle,
- String? dialogContent,
- String? negativeText,
- String? affirmativeText,
- void onCompleted(
- String value
)?}
)
Implementation
const CustomPinCodeField({
Key? key,
required this.length,
required this.onChanged,
this.beforeTextPaste,
this.hintCharacter,
this.dialogTitle,
this.dialogContent,
this.negativeText,
this.affirmativeText,
this.onCompleted,
}) : super(key: key);