Time property

Time? Time
Gets or sets the time at which the change occurs.

Implementation

misc.Time? get Time => this._time;
void Time=(Time? value)

Implementation

set Time(misc.Time? value) {
  if (this.CanSetFieldValue(this._time, value)) {
    this._time = value;
    this.Changed();
  }
}