DecodedAddress constructor

DecodedAddress({
  1. required String prefix,
  2. required AddressType type,
  3. required String hash,
})

Implementation

DecodedAddress({
  required this.prefix,
  required this.type,
  required this.hash,
});