start method

void start()

Implementation

void start() {
  _timer?.cancel();
  _timer = Timer.periodic(Duration(minutes: 30), (_) async {
    try {
      // await AuthService().refreshTokens();
    } catch (e) {
      _timer?.cancel();
    }
  });
}