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.
Entry(this.value, this.timeAdded, this.expirationDate){
}