currentTime method

AFTimeState currentTime()

Implementation

AFTimeState currentTime() {
  var exists = testData[nowId];
  if(exists == null) {
    exists = AFTimeState.createNow();
    testData[nowId] = exists;
  }
  return exists;
}