fromBytes<T extends ADAShellyAddress> static method

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

Factory method to create an ADAShellyAddress instance from bytes.

Implementation

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