Use case
I am using the WebView widget in my application and have noticed that users can long-press links to get a preview, aka, peek and pop view (iOS only feature):

I would like to have control over what WebViews have this property enabled on iOS.
This can be set by using the allowsLinkPreview boolean property on WKWebview.
Some other packages do expose this property like flutter_inappwebview - allowsLinkPreview
However, I feel this is a foundational level functionality for webviews on iOS and noticed that flutter_webviews package doesn't expose this property but does expose other iOS only properties like gestureNavigationEnabled.
Proposal
In a similar manner to the gestureNavigationEnabled property I was going to propose adding allowsLinkPreview and passing that through to the native WKWebView set up.