TimingBadge constructor

const TimingBadge({
  1. Key? key,
  2. required int totalMs,
  3. int? detectionMs,
  4. int? meshMs,
  5. int? irisMs,
  6. bool meshEnabled = false,
  7. bool irisEnabled = false,
  8. bool meshProcessed = false,
  9. bool irisProcessed = false,
})

Implementation

const TimingBadge({
  super.key,
  required this.totalMs,
  this.detectionMs,
  this.meshMs,
  this.irisMs,
  this.meshEnabled = false,
  this.irisEnabled = false,
  this.meshProcessed = false,
  this.irisProcessed = false,
});