ALButton constructor

const ALButton({
  1. Key? key,
  2. required String button_text,
  3. required double button_text_size,
  4. IconData? button_icon,
  5. double? icon_size,
  6. required Color button_color,
  7. required Color button_text_color,
  8. Color? button_icon_color,
  9. Color? button_outline_color,
  10. required double button_radius,
  11. required double button_height,
  12. required double button_width,
  13. required dynamic onClick(),
})

Implementation

const ALButton({
  Key? key, required this.button_text, required this.button_text_size, this.button_icon, this.icon_size, required this.button_color, required this.button_text_color, this.button_icon_color, this.button_outline_color, required this.button_radius, required this.button_height, required this.button_width, required this.onClick,
}) : super(key: key);