CodeInputWidget constructor

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

Implementation

CodeInputWidget({
  required this.onCodeRead,
  this.onTimeout,
  this.onTick,
  this.timeout = 30,
});