SyncState constructor

const SyncState({
  1. required bool initialSync,
  2. String? errorMsg,
  3. int? countDown,
  4. int? nextRetry,
})

Implementation

const factory SyncState({
  required bool initialSync,
  String? errorMsg,
  int? countDown,
  int? nextRetry,
}) = _NewSyncState;