LeadstateMonitor constructor

const LeadstateMonitor({
  1. required ModuleInterface module,
  2. Key? key,
  3. double width = 300,
  4. double height = 150,
  5. Widget? onLoadingWidget,
  6. Widget wrapperWidget(
    1. List<bool>
    )?,
  7. EdgeInsets padding = const EdgeInsets.all(20),
})

Implementation

const LeadstateMonitor({
  required this.module,
  super.key,
  this.width = 300,
  this.height = 150,
  this.onLoadingWidget,
  this.wrapperWidget,
  this.padding = const EdgeInsets.all(20),
});