Objects property
      
      Iterable<TServiceObject> ?
      get
      Objects
      
    
    
Implementation
Iterable<TServiceObject>? get Objects => this._objects;
      
      set
      Objects
      (Iterable<TServiceObject> ? value) 
      
    
    
    
Implementation
set Objects(Iterable<TServiceObject>? value) {
  this._objects = value;
}