RFIDConfig constructor

RFIDConfig({
  1. bool showUI = true,
  2. String? hintText,
  3. String? progressText,
  4. String? successText,
  5. String? failureText,
  6. int? timeout,
})

Implementation

RFIDConfig({
  this.showUI = true,
  this.hintText,
  this.progressText,
  this.successText,
  this.failureText,
  this.timeout,
});