ZebraDevice constructor

ZebraDevice({
  1. required String address,
  2. required String name,
  3. required bool isWifi,
  4. required String status,
  5. bool isConnected = false,
  6. Color color = const Color.fromARGB(255, 255, 0, 0),
})

Implementation

ZebraDevice(
    {required this.address,
    required this.name,
    required this.isWifi,
    required this.status,
    this.isConnected = false,
    this.color = const Color.fromARGB(255, 255, 0, 0),
    });