decoder method

  1. @Deprecated('Use decode(value, charset: ..., kind: ...) instead')
dynamic decoder(
  1. String? value, {
  2. Encoding? charset,
  3. DecodeKind kind = DecodeKind.value,
})

Deprecated: use decode. This wrapper will be removed in a future release.

Implementation

@Deprecated('Use decode(value, charset: ..., kind: ...) instead')
dynamic decoder(
  String? value, {
  Encoding? charset,
  DecodeKind kind = DecodeKind.value,
}) =>
    decode(value, charset: charset, kind: kind);