Converts the VRFProof instance into a List<int> by concatenating the 'c' and 's' components.
VRFProof
List<int>
List<int> toBytes() { return List<int>.from([..._c, ..._s]); }