readList<E> method
Reads the dartObject instance and returns an instance of List<T>.
Implementation
List<E> readList<E>({String fieldName = ''}) {
if (isNotCoreType<List<E>>()) {
addDecoder<List<E>>(ListDecoder<E>());
}
return read<List<E>>(fieldName: fieldName);
}