ActionsSection constructor

const ActionsSection({
  1. Key? key,
  2. required bool isUpToDate,
  3. required VoidCallback onUpdate,
  4. required ResolvedColors colors,
  5. required ResolvedStyles styles,
  6. required ResolvedStrings strings,
})

Implementation

const ActionsSection({
  super.key,
  required this.isUpToDate,
  required this.onUpdate,
  required this.colors,
  required this.styles,
  required this.strings,
});