decoder method
- @Deprecated('Use decode(value, charset: ..., kind: ...) instead')
- String? value, {
- Encoding? charset,
- 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);