flutter_telegram_crashlytics 1.0.4 flutter_telegram_crashlytics: ^1.0.4 copied to clipboard
Telegram bot application crash reporter library.
TCrashlytics is a lightweight, realtime crash reporter that helps you track, prioritize, and fix stability issues that erode your app quality. Set your bot token and chat id to get all crash reports through telegram bot.
void main() {
var reporter = TCrashReporter();
reporter.init('botToken', 'chatId');
reporter.scope(() {
runApp(const MyApp());
});
}