ConnectionMonitor constructor

const ConnectionMonitor({
  1. required ModuleInterface module,
  2. Key? key,
  3. double width = 50,
  4. double height = 50,
  5. Widget? onConnectedWidget,
  6. Widget? onDisconnectedWidget,
})

Implementation

const ConnectionMonitor({
  required this.module,
  super.key,
  this.width = 50,
  this.height = 50,
  this.onConnectedWidget,
  this.onDisconnectedWidget,
});