LEAddress.fromTypeBytes constructor

LEAddress.fromTypeBytes(
  1. LEAddressType? type,
  2. Uint8List bytes
)

Implementation

LEAddress.fromTypeBytes(LEAddressType? type, Uint8List bytes)
    : super.fromBytes(bytes) {
  this.type = type!;
}