c_backwards_one function

CandidType c_backwards_one(
  1. Uint8List candidbytes
)

Like c_backwards but returns one value. When the caller knows that the response contains only one value this is convenient.

Implementation

CandidType c_backwards_one(Uint8List candidbytes) {
    return c_backwards(candidbytes).first;
}