decodeValue method

dynamic decodeValue(
  1. String? value, {
  2. Encoding? charset,
})

Convenience: decode a value token.

Implementation

dynamic decodeValue(
  String? value, {
  Encoding? charset,
}) =>
    decode(
      value,
      charset: charset ?? this.charset,
      kind: DecodeKind.value,
    );