LEAddress constructor

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

Constructs an LEAddress with the specified type and address.

Implementation

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