serviceMode property
      
      bool
      get
      serviceMode
      
    
    
Whether application Bmrt is contained within is running as service
Implementation
bool get serviceMode => tryCast(this["ServiceMode"], constOptionServiceMode);
      
      set
      serviceMode
      (bool value) 
      
    
    
    
Implementation
set serviceMode(bool value) {
  this["ServiceMode"] = value;
}