isLinkedInProfile method
Check string is linkedin profile url
Implementation
bool isLinkedInProfile({String? permalink}) {
var o = linkedInUrl?.profileUrl;
if (o == null) return false;
return (permalink == null || o.permalink == permalink);
}