fromJsonListAsync<T> static method
FutureOr<List<T?> >
fromJsonListAsync<T>(
- FutureOr<
Iterable> o, { - Type? type,
- TypeInfo? typeInfo,
- JsomMapDecoder? jsomMapDecoder,
- EntityHandlerProvider? entityHandlerProvider,
- EntityCache? entityCache,
- bool? autoResetEntityCache,
Implementation
static FutureOr<List<T?>> fromJsonListAsync<T>(
FutureOr<Iterable> o, {
Type? type,
TypeInfo? typeInfo,
JsomMapDecoder? jsomMapDecoder,
EntityHandlerProvider? entityHandlerProvider,
EntityCache? entityCache,
bool? autoResetEntityCache,
}) {
var jsonDecoder = _buildJsonDecoder(
jsomMapDecoder,
entityHandlerProvider,
entityCache,
);
return jsonDecoder.fromJsonListAsync<T>(
o,
type: type,
typeInfo: typeInfo,
autoResetEntityCache: autoResetEntityCache,
);
}