initialize method

  1. @override
Future<bool?> initialize({
  1. required LinuxInitializationSettings settings,
  2. DidReceiveNotificationResponseCallback? onDidReceiveNotificationResponse,
})

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

Implementation

@override
Future<bool?> initialize({
  required LinuxInitializationSettings settings,
  DidReceiveNotificationResponseCallback? onDidReceiveNotificationResponse,
}) async {
  assert(false);
  return null;
}