DiaryActionButton constructor

const DiaryActionButton({
  1. Key? key,
  2. required VoidCallback onPressed,
  3. required IconData icon,
  4. required String label,
  5. required Color backgroundColor,
  6. required Color iconColor,
  7. required Color textColor,
  8. required Color borderColor,
})

Creates a DiaryActionButton with the specified properties.

Implementation

const DiaryActionButton({
  super.key,
  required this.onPressed,
  required this.icon,
  required this.label,
  required this.backgroundColor,
  required this.iconColor,
  required this.textColor,
  required this.borderColor,
});