initialize method

  1. @override
Future<bool?> initialize(
  1. LinuxInitializationSettings initializationSettings, {
  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(
  LinuxInitializationSettings initializationSettings, {
  DidReceiveNotificationResponseCallback? onDidReceiveNotificationResponse,
}) async {
  assert(false);
  return null;
}