shouldSync method

bool shouldSync()

Should Sync current Configuration File with Network

Implementation

bool shouldSync() {
  return ((DateTime.now().millisecondsSinceEpoch - _lastSync) >=
      _syncIntervall);
}