LEAddress.fromBytes constructor

LEAddress.fromBytes(
  1. Uint8List? bytes
)

Implementation

LEAddress.fromBytes(Uint8List? bytes) {
  if (bytes != null) {
    this.bytes = bytes;
  }
}