Objects property

Iterable<TServiceObject>? get Objects
Gets or sets the service objects.

Implementation

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

Implementation

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