ClassicConnectionEvent constructor

const ClassicConnectionEvent({
  1. required String type,
  2. String? deviceAddress,
  3. String? message,
  4. String? reason,
  5. String? errorType,
  6. required int timestamp,
})

Implementation

const ClassicConnectionEvent({
  required this.type,
  this.deviceAddress,
  this.message,
  this.reason,
  this.errorType,
  required this.timestamp,
});