encodeValue method
Encode the value. This needs to be public because it is used by encodeValue() from different types. @internal
Implementation
@override
Uint8List encodeValue(List x) {
if (x.isEmpty) {
return Uint8List.fromList([0]);
}
final val = x[0];
return u8aConcat([
Uint8List.fromList([1]),
tryToJson(_type, val) ?? _type.encodeValue(val),
]);
}