valueAsBytes<T extends List<int>? > method
Implementation
T valueAsBytes<T extends List<int>?>(
K key, {
bool allowHex = true,
StringEncoding? encoding,
}) {
final value = _checkItem<T>(key);
if (value == null) return value as T;
return JsonParser.valueAsBytes<T>(
value,
allowHex: allowHex,
encoding: encoding,
);
}