CustomPinCodeField constructor

const CustomPinCodeField(
  1. {Key? key,
  2. TextEditingController? controller,
  3. String? validator(
    1. String?
    )?,
  4. dynamic onCompleted(
    1. String
    )?}
)

Implementation

const CustomPinCodeField({
  Key? key,
  this.controller,
  this.validator,
  this.onCompleted,
}) : super(key: key);