TableSyncGroup constructor

const TableSyncGroup({
  1. String? title,
  2. required List<String> tables,
  3. String? serviceID,
  4. Duration every = const Duration(minutes: 1),
  5. bool autoSync = true,
  6. bool syncOnStart = false,
})

Implementation

const TableSyncGroup({
  this.title,
  required this.tables,
  this.serviceID,
  this.every = const Duration(minutes: 1),
  this.autoSync = true,
  this.syncOnStart = false,
});