ALButton constructor
const
ALButton({
- Key? key,
- required String button_text,
- required double button_text_size,
- IconData? button_icon,
- double? icon_size,
- required Color button_color,
- required Color button_text_color,
- Color? button_icon_color,
- Color? button_outline_color,
- required double button_radius,
- required double button_height,
- required double button_width,
- 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);