AddphotoController constructor
AddphotoController({
- String iconName = '',
- String text = '',
- Color? color,
- VoidCallback? onTap,
Implementation
AddphotoController({
String iconName = '',
String text = '',
Color? color,
this.onTap,
}) {
this.iconName.value = iconName;
this.text.value = text;
this.color.value = color ?? ThemeColors.black;
}