BatteryMonitor constructor

const BatteryMonitor({
  1. required ModuleInterface module,
  2. Key? key,
  3. double height = 50,
  4. Widget? onLoadingWidget,
  5. Widget wrapperWidget(
    1. int
    )?,
})

Implementation

const BatteryMonitor({
  required this.module,
  super.key,
  this.height = 50,
  this.onLoadingWidget,
  this.wrapperWidget,
});