show method

  1. @override
Future<void> show(
  1. int id,
  2. String? title,
  3. String? body, {
  4. LinuxNotificationDetails? notificationDetails,
  5. String? payload,
})

Errors on attempted calling of the stub. It exists only to satisfy compile-time dependencies, and should never actually be called.

Implementation

@override
Future<void> show(
  int id,
  String? title,
  String? body, {
  LinuxNotificationDetails? notificationDetails,
  String? payload,
}) async {
  assert(false);
}