configureMeSendFirebaseBackgroundInit function

void configureMeSendFirebaseBackgroundInit({
  1. required FirebaseOptions options,
})

Stores FirebaseOptions in the current isolate.

Calling this in main does not configure the FCM background isolate. Use meSendHandleBackgroundRemoteMessage from a host top-level handler.

Implementation

void configureMeSendFirebaseBackgroundInit({
  required FirebaseOptions options,
}) {
  _meSendFirebaseBackgroundOptions = options;
}