FormItemAvatarImage constructor

const FormItemAvatarImage({
  1. required ImageProvider<Object> image,
  2. String label = "",
  3. VoidCallback? onPressed,
  4. Color? textColor,
  5. Color? backgroundColor,
  6. bool enabled = true,
})

Implementation

const FormItemAvatarImage({
  required this.image,
  this.label = "",
  this.onPressed,
  this.textColor,
  this.backgroundColor,
  this.enabled = true,
});