TableSyncButton constructor

const TableSyncButton({
  1. Key? key,
  2. required List<String> groupIDs,
  3. VoidCallback? onRefresh,
  4. Color? color,
})

Implementation

const TableSyncButton({
  super.key,
  required this.groupIDs,
  this.onRefresh,
  this.color,
}) : assert(groupIDs.length > 0, 'groupIDs cannot be empty');