TableSyncGroupState constructor

const TableSyncGroupState({
  1. bool syncing = false,
  2. bool hasError = false,
  3. String errorMessage = '',
  4. DateTime? lastRun,
  5. bool autoSyncEnabled = true,
})

Implementation

const TableSyncGroupState({
  this.syncing = false,
  this.hasError = false,
  this.errorMessage = '',
  this.lastRun,
  this.autoSyncEnabled = true,
});