ListBaseToCollectionConverter class
A converter that transforms a col.ListBase to a specific collection subtype.
Supported conversions:
col.ListBase→col.ListBasecol.ListBase→Listcol.ListBase→Setcol.ListBase→Queuecol.ListBase→Iterablecol.ListBase→HashSetcol.ListBase→LinkedQueuecol.ListBase→LinkedListcol.ListBase→LinkedStackcol.ListBase→Stackcol.ListBase→col.LinkedHashSetcol.ListBase→col.ListBasecol.ListBase→col.SetBasecol.ListBase→col.Queue
Example:
final converter = ListBaseToCollectionConverter();
print(converter.convert(ListBase.from([1, 2, 3]), Class.forType(ListBase), Class<List>(null, PackageNames.DART))); // prints: [1, 2, 3]
- Inheritance
-
- Object
- PairedConverter
- PairedConditionalConverter
- CollectionToCollectionConverter
- ListBaseToCollectionConverter
Constructors
- ListBaseToCollectionConverter(ConversionService cs)
- A converter that transforms a col.ListBase to a specific collection subtype.
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
convert<
T> (Object? source, Class sourceType, Class targetType) → Object? -
A general-purpose converter that can convert between multiple source–target type pairs.
inherited
-
getConvertibleTypes(
) → Set< ConvertiblePair> ? -
A general-purpose converter that can convert between multiple source–target type pairs.
inherited
-
getPackageName(
) → String -
Represents an abstraction for identifying the package that an object,
resource, or service belongs to.
inherited
-
matches(
Class sourceType, Class targetType) → bool -
A contract for a converter that only matches under certain conditions.
inherited
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited