Dart Documentationclean_sync.serverEntry

Entry class

class Entry {
 DateTime timeAdded;
 DateTime expirationDate;
 dynamic value;

 Entry(this.value, this.timeAdded, this.expirationDate){
 }
}

Constructors

new Entry(value, DateTime timeAdded, DateTime expirationDate) #

Creates a new Object instance.

Object instances have no meaningful state, and are only useful through their identity. An Object instance is equal to itself only.

docs inherited from Object
Entry(this.value, this.timeAdded, this.expirationDate){
}

Properties

DateTime expirationDate #

DateTime expirationDate

DateTime timeAdded #

DateTime timeAdded

var value #

dynamic value