ADAByronAddress.fromRawBytes constructor

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

Factory method to create an ADAByronAddress instance from bytes.

Implementation

factory ADAByronAddress.fromRawBytes(List<int> bytes) {
  return _deserialize(bytes);
}