PublicKey constructor

const PublicKey(
  1. List<int> bytes
)

Implementation

const PublicKey(this.bytes)
    : assert(bytes.length == pubkeyLength,
          'bytes length must be equal to $pubkeyLength but it is ${bytes.length}');