notify method

  1. @override
Future<void> notify({
  1. required String title,
  2. String? content,
})

Implementation

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