setFirebaseAsActiveService method

Future<bool> setFirebaseAsActiveService()

Set Firebase Cloud Messaging as the active notification service.

This will disable any other active notification services (polling or foreground). Use this when you want to use Firebase for notifications instead of the built-in services. Returns true if the operation was successful.

Implementation

Future<bool> setFirebaseAsActiveService() {
  throw UnimplementedError(
    'setFirebaseAsActiveService() has not been implemented.',
  );
}