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