BrilliantDevice constructor

BrilliantDevice({
  1. required BrilliantConnectionState state,
  2. required BluetoothDevice device,
  3. int? maxStringLength,
  4. int? maxDataLength,
  5. Duration defaultTimeout = const Duration(seconds: 30),
  6. bool logDebugging = false,
})

Implementation

BrilliantDevice({
  required this.state,
  required this.device,
  this.maxStringLength,
  this.maxDataLength,
  this.defaultTimeout = const Duration(seconds: 30),
  this.logDebugging = false,
});