flutter_telegram_crashlytics 1.0.2 copy "flutter_telegram_crashlytics: ^1.0.2" to clipboard
flutter_telegram_crashlytics: ^1.0.2 copied to clipboard

outdated

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());
  });
}