currentTimestamp property

double get currentTimestamp

Implementation

double get currentTimestamp {
  return eventsJson
      .map((event) => event['timestamp'] as double)
      .reduce((a, b) => max(a, b));
}