appLaunchUrl property
      
      String?
      get
      appLaunchUrl
      
    
    
The launch url (only present for apps).
Implementation
String? get appLaunchUrl => _wrapped.appLaunchUrl;
      
      set
      appLaunchUrl
      (String? v) 
      
    
    
    
Implementation
set appLaunchUrl(String? v) {
  _wrapped.appLaunchUrl = v;
}