LEAddress constructor

LEAddress({
  1. LEAddressType? type,
  2. String? address,
})

Constructs an LEAddress with the specified type and address.

Implementation

LEAddress({LEAddressType? type, super.address}) {
  this.type = type!;
}