BleData constructor

const BleData({
  1. required String macAddress,
  2. required String model,
})

BleData is the BLE data packet.

This packet is part of the packet sent from the server to the device.

Implementation

const BleData({
  required this.macAddress,
  required this.model,
});