initialize method

Future<void> initialize({
  1. DidReceiveNotificationResponseCallback? onDidReceiveNotificationResponse,
  2. DidReceiveBackgroundNotificationResponseCallback? onDidReceiveBackgroundNotificationResponse,
})

Initializes the platform-specific alarm implementation.

Must be called once at app startup before any alarm operations. Sets up channels, listeners, and retrieves any pending notification responses.

Implementation

Future<void> initialize({
 DidReceiveNotificationResponseCallback? onDidReceiveNotificationResponse,
 DidReceiveBackgroundNotificationResponseCallback?
 onDidReceiveBackgroundNotificationResponse,
  }) {
 throw UnimplementedError('initialize() has not been implemented.');
  }