TrackedValue<T> constructor

TrackedValue<T>(
  1. T tracked, [
  2. int? timestamp
])

Implementation

TrackedValue(this.tracked, [int? timestamp])
    : timestamp = timestamp ?? DateTime.now().millisecondsSinceEpoch;