A new flutter plugin project.
To use this plugin, add flutter_yandex_appmetric as a dependency in your pubspec.yaml file.
void initState() {
super.initState();
FlutterYandexAppmetric.init(apiKey: 'appKey');
}
void onTap() {
FlutterYandexAppmetric.reportCustomEvent(eventName: 'button_tap');
}