ODIDMetadata constructor

ODIDMetadata({
  1. required String macAddress,
  2. required MessageSource source,
  3. int? rssi,
  4. String? btName,
  5. int? frequency,
  6. int? centerFreq0,
  7. int? centerFreq1,
  8. int? channelWidthMhz,
  9. BluetoothPhy? primaryPhy,
  10. BluetoothPhy? secondaryPhy,
})

Implementation

ODIDMetadata({
  required this.macAddress,
  required this.source,
  this.rssi,
  this.btName,
  this.frequency,
  this.centerFreq0,
  this.centerFreq1,
  this.channelWidthMhz,
  this.primaryPhy,
  this.secondaryPhy,
});