0 purchases
tele catcher
Features #
Catch your errors and send it to telegram
Getting started #
Add tele_catcher to your pubspec.yaml
dependencies:
tele_catcher: ^1.1.0
copied to clipboard
dependencies:
tele_catcher:
git: https://github.com/alejandrogiubel/tele_catcher
copied to clipboard
Usage #
First you need to create a telegram bot with BotFather in order to get the bot token, them you can start the bot in private chat or group chat.
In order to get the chat id read
https://stackoverflow.com/questions/32423837/telegram-bot-how-to-get-a-group-chat-id
Init tele_catcher in your main function
await TeleCatcher.start('1111111111:aqwdergydsghbnhytyjuhf304-dkmtihndeyu58', 000000000);
copied to clipboard
Send report
TeleCatcher.sendError('This is a simple message');
copied to clipboard
If you want a global error catcher and send the report to TeleCatcher
FlutterError.onError = (details) {
TeleCatcher.sendError(details.toString());
};
copied to clipboard
Additional information #
PR are welcome
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.