fromBytes<T extends ADAAddress> static method

T fromBytes<T extends ADAAddress>(
  1. List<int> bytes
)

Factory method to create an ADAAddress instance from bytes.

Implementation

static T fromBytes<T extends ADAAddress>(List<int> bytes) {
  return deserialize<T>(CborObject.fromCbor(bytes).cast());
}