desktop_notifications 0.6.3 desktop_notifications: ^0.6.3 copied to clipboard
Allows notifications to be sent on Linux desktops using the desktop notifications specification.
import 'package:desktop_notifications/desktop_notifications.dart';
void main() async {
var client = NotificationsClient();
await client.notify('Hello World!');
await client.close();
}