BrilliantDevice constructor

BrilliantDevice({
  1. required BrilliantConnectionState state,
  2. required BluetoothDevice device,
  3. int? maxStringLength,
  4. int? maxDataLength,
})

Implementation

BrilliantDevice({
  required this.state,
  required this.device,
  this.maxStringLength,
  this.maxDataLength,
});