[ x] I am creating this PR in reference to an issue.
Issue Description
While testing one perhaps doesn't want to initialize Parse or all other dependencies. however Installation.current is optional but it's backingStore is force unwrapped causing a crash when trying to get .current installation if Parse hasn't been initialized rather than just returning nil.
New Pull Request Checklist
Issue Description
While testing one perhaps doesn't want to initialize Parse or all other dependencies. however Installation.current is optional but it's backingStore is force unwrapped causing a crash when trying to get .current installation if Parse hasn't been initialized rather than just returning nil.
Closes: issue
Approach
removed ! added ? made it compile 🤷
TODOs before merging