ActionsSection constructor

const ActionsSection({
  1. Key? key,
  2. required bool isUpToDate,
  3. required VoidCallback onUpdate,
  4. bool enableHaptics = false,
  5. bool showRedirectButton = false,
  6. required String githubRepo,
  7. required ResolvedColors colors,
  8. required ResolvedStyles styles,
  9. required ResolvedStrings strings,
})

Implementation

const ActionsSection({
  super.key,
  required this.isUpToDate,
  required this.onUpdate,
  this.enableHaptics = false,
  this.showRedirectButton = false,
  required this.githubRepo,
  required this.colors,
  required this.styles,
  required this.strings,
});