Type 'List<Object?>' is not a subtype of type 'List<Object>' in type cast in Flutter
While fetching the list of data from Firebase Firestore using Stream Builder in the StreamSubcription listener fetching it as QuerySnapshot and is not able to cast to a List. late StreamSubcription _listener; final _controller = BehaviorSubject<List<Object>>(); Stream<List<Journey>> get getList =>…