Hash-Studios / e-learning-app

E-Learn is a beautiful open-source education app for Android. It is built with Dart on top of Google's Flutter Framework.
BSD 3-Clause "New" or "Revised" License
317 stars 118 forks source link

How can I solve this #19

Open protyayrd opened 2 years ago

protyayrd commented 2 years ago

Help please lib/analytics/analytics_service.dart:4:37: Error: Couldn't find constructor 'FirebaseAnalytics'. final FirebaseAnalytics analytics = FirebaseAnalytics();

sarthaknerd commented 1 year ago

check Firebase Analytics package is properly installed and imported in your project

KanyantaM commented 1 year ago

The correct line should be: final FirebaseAnalytics analytics = FirebaseAnalytics.instance;

That should solve the problem