ADAByronAddress.fromBytes constructor

ADAByronAddress.fromBytes(
  1. List<int> bytes
)

Factory method to create an ADAByronAddress instance from bytes.

Implementation

factory ADAByronAddress.fromBytes(List<int> bytes) {
  return ADAByronAddress.deserialize(CborObject.fromCbor(bytes).cast());
}