Can we implement Firebase Analytics in a Flutter Web application? If not, is there any other option?
First import Firebase
import 'package:firebase/firebase.dart' as Firebase;
Update index.html
And log events
final analytics = Firebase.analytics(); analytics.logEvent("event_name", {});