LEAddress constructor
LEAddress({
- LEAddressType? type,
- String? address,
Constructs an LEAddress with the specified type and address.
Implementation
LEAddress({LEAddressType? type, String? address}) : super(address: address) {
this.type = type!;
}