bytes property

Uint8List bytes

Implementation

Uint8List get bytes {
  return this.addr;
}
void bytes=(Uint8List bytes)

Implementation

set bytes(Uint8List bytes) {
  if (bytes.length != 6) {
    throw ArgumentError.value(
        bytes.length, "Bytes length of Bluetooth LE Address must be 6");
  }
  this.addr = bytes;
}