@override Future<void> notify({ required String title, String? content, }) async { var client = NotificationsClient(); await client.notify(title, body: content ?? ''); await client.close(); }