dart:convert
Converter<S, T> class
A Converter converts data from one representation into another.
It is recommended that implementations of Converter
extend this class, to inherit any further methods that may be added to the class.
- Inheritance
- Implemented by
Constructors
- Converter()
const
Properties
- hashCode → int
read-only, inherited
- The hash code for this object. [...]
- runtimeType → Type
read-only, inherited
- A representation of the runtime type of the object.
Methods
- bind(Stream<S> stream) → Stream<T>
- Transforms the provided
stream
. [...] - cast<RS, RT>() → Converter<RS, RT>
- Provides a
Converter<RS, RT>
view of this stream transformer. [...] - convert(S input) → T
- Converts
input
and returns the result of the conversion. - fuse<TT>(Converter<T, TT> other) → Converter<S, TT>
- Fuses
this
with other
. [...] - startChunkedConversion(Sink<T> sink) → Sink<S>
- Starts a chunked conversion. [...]
- noSuchMethod(Invocation invocation) → dynamic
inherited
- Invoked when a non-existent method or property is accessed. [...]
- toString() → String
inherited
- Returns a string representation of this object.
Operators
- operator ==(dynamic other) → bool
inherited
- The equality operator. [...]
Static Methods
- castFrom<SS, ST, TS, TT>(Converter<SS, ST> source) → Converter<TS, TT>
- Adapts
source
to be a Converter<TS, TT>
. [...]