Decode the input using the specified Decoder.
dynamic decoder(String? value, {Encoding? charset}) => _decoder is Function ? _decoder?.call(value, charset: charset) : Utils.decode(value, charset: charset);