getNextSyncTime method

Future<DateTime?> getNextSyncTime()

Gets the DateTime of the next scheduled auto-sync as a Future.

Returns null if no auto-sync is currently scheduled.

Implementation

Future<DateTime?> getNextSyncTime() async {
  return _nextSyncTimeSubject.value;
}