AddphotoController constructor

AddphotoController({
  1. String iconName = '',
  2. String text = '',
  3. Color? color,
  4. 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;
}