ADAByronAddress.fromBytes constructor

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

Factory method to create an ADAByronAddress instance from cbor bytes.

Implementation

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