ConnectionInfo constructor

ConnectionInfo({
  1. required String ip,
  2. required String name,
  3. required String macAddress,
  4. bool isOpen = true,
  5. int signalStrength = 0,
})

Implementation

ConnectionInfo({required this.ip, required this.name, required this.macAddress, this.isOpen = true, this.signalStrength = 0});