currentPushTime property

DateTime get currentPushTime

Implementation

DateTime get currentPushTime {
  final an = actualNow;
  if(an == null) {
    throw AFException(missingNowError);
  }

  var totalOffset = simulatedOffset;
  if(isUTC) {
    totalOffset -= an.timeZoneOffset;
  }
  return an.add(totalOffset);
}