This module allows your app to interact with other apps via deep links. It provides helper methods for constructing and parsing deep links into your app.
This module is an extension of the React Native Linking module, meaning that all methods in the RN module can be accessed via Linking, on top of the extra methods provided by Expo (detailed here). These methods only apply to the managed workflow, you cannot use them in a bare React Native app.
For information and examples on how to use this API and the react-native Linking API in your app, take a look at this guide.
queryParams (object) -- An object with a set of query parameters. These will be merged with any Expo-specific parameters that are needed (e.g. release channel) and then appended to the url as a query string.
Helper method which wraps React Native's Linking.getInitialURL() in Linking.parse(). Parses the deep link information out of the URL used to open the experience initially.