HeartRateMonitor constructor

const HeartRateMonitor({
  1. required ModuleInterface module,
  2. Key? key,
  3. TextStyle? style,
  4. double fontSize = 50,
  5. double width = 200,
  6. double height = 50,
  7. bool isUsingMean = true,
  8. int meanListCount = 4,
})

Implementation

const HeartRateMonitor({
  required this.module,
  super.key,
  this.style,
  this.fontSize = 50,
  this.width = 200,
  this.height = 50,
  this.isUsingMean = true,
  this.meanListCount = 4,
});