OxiMonitor constructor

const OxiMonitor({
  1. Key? key,
  2. required ModuleInterface module,
  3. Widget? onLoadingWidget,
  4. double? width,
  5. double? height,
  6. Color color = Colors.black,
  7. Widget wrapperWidget(
    1. List<Widget>
    )?,
  8. Color pivotColor = Colors.transparent,
  9. double pivotStrokeWidth = 0,
  10. double strokeWidth = 1.5,
  11. double maxY = 2,
  12. double minY = -2,
  13. Color backgroundColor = Colors.transparent,
  14. List<int> ignoreChannels = const [],
})

Implementation

const OxiMonitor({
  super.key,
  required this.module,
  this.onLoadingWidget,
  this.width,
  this.height,
  this.color = Colors.black,
  this.wrapperWidget,
  this.pivotColor = Colors.transparent,
  this.pivotStrokeWidth = 0,
  this.strokeWidth = 1.5,
  this.maxY = 2,
  this.minY = -2,
  this.backgroundColor = Colors.transparent,
  this.ignoreChannels = const [],
});