getTimestamp method

int? getTimestamp(
  1. String eventName
)

Get the timestamp for an event name, or null if not tracked.

Implementation

int? getTimestamp(String eventName) {
  return _timestamps[eventName];
}