c_forwards_one function

Uint8List c_forwards_one(
  1. CandidType c
)

Like c_forwards but when serializing a single value this is convenient.

Implementation

Uint8List c_forwards_one(CandidType c) {
    return c_forwards([c]);
}