TableSyncSettingsBox constructor

const TableSyncSettingsBox({
  1. Key? key,
  2. required bool autoSync,
  3. required Duration every,
  4. required Future<void> onSave(
    1. bool autoSync,
    2. Duration every
    ),
})

Implementation

const TableSyncSettingsBox({
  super.key,
  required this.autoSync,
  required this.every,
  required this.onSave,
});