slack_notifier 1.4.0 slack_notifier: ^1.4.0 copied to clipboard
A simple wrapper for posting messages to Slack using Incoming Webhooks.
import 'package:slack_notifier/slack_notifier.dart';
void main() {
final slack = SlackNotifier('T00000000/B00000000/XXXXXXXXXXXXXXXXXXXXXXXX');
slack.send('Hello world :tada:', channel: 'general');
}