TableSyncItem constructor

const TableSyncItem({
  1. Key? key,
  2. required String groupID,
  3. bool syncOnInit = false,
})

Implementation

const TableSyncItem({
  super.key,
  required this.groupID,
  this.syncOnInit = false,
});