CodeInputWidget constructor

CodeInputWidget({
  1. Key? key,
  2. required dynamic onCodeRead(
    1. String code
    ),
  3. dynamic onTimeout()?,
  4. dynamic onTick(
    1. int left
    )?,
  5. int timeout = 30,
})

Implementation

CodeInputWidget({
  Key? key,
  required this.onCodeRead,
  this.onTimeout,
  this.onTick,
  this.timeout = 30,
}) : super(key: key);