toBytes method

List<int> toBytes()

Converts the VRFProof instance into a List<int> by concatenating the 'c' and 's' components.

Implementation

List<int> toBytes() {
  return List<int>.from([..._c, ..._s]);
}