GetExternalLink constructor

const GetExternalLink({
  1. required String link,
  2. required bool allowWriteAccess,
})

Returns an HTTP URL which can be used to automatically authorize the current user on a website after clicking an HTTP link. Use the method getExternalLinkInfo to find whether a prior user confirmation is needed

Implementation

const GetExternalLink({
  required this.link,
  required this.allowWriteAccess,
});