fromJsonList<O> method
Converts o to as List of type.
Implementation
List<O?> fromJsonList<O>(
Iterable o, {
Type? type,
TypeInfo? typeInfo,
bool duplicatedEntitiesAsID = false,
bool? autoResetEntityCache,
}) {
return decoder.fromJsonList<O>(
o,
type: type,
typeInfo: typeInfo,
duplicatedEntitiesAsID: duplicatedEntitiesAsID,
autoResetEntityCache: autoResetEntityCache,
);
}