isCheckTimerCall function

bool isCheckTimerCall(
  1. String? updateAt
)

Implementation

bool isCheckTimerCall(String? updateAt) {
  try {
    // if (updateAt?.isNotEmpty == true) {
    //   final timerBefore = DateTime.parse(updateAt!).toLocal();
    //   final timerNow = DateTime.now();
    //   final currentSecond = timerNow.difference(timerBefore).inSeconds;
    //   if (currentSecond < 200) {
    //     return true;
    //   }
    //   return true;
    // }
    return true;
  } catch (e) {
    showLogE("isCheckTimerCall", className: "Call_helper");
    return true;
  }
}