c_backwards_one function
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;
}