flutter_telegram_crashlytics 1.0.2
flutter_telegram_crashlytics: ^1.0.2 copied to clipboard
Telegram bot application crash reporter library.
void main() {
//[important] add this line before.
WidgetsFlutterBinding.ensureInitialized();
var reporter = TCrashReporter();
reporter.init('botToken', 'chatId');
reporter.scope(() {
runApp(const MyApp());
});
}