TextWithLabel constructor

const TextWithLabel({
  1. Key? key,
  2. String? label,
  3. required String text,
  4. String? description,
  5. required dynamic onTap(),
  6. Color? iconBackgroundColor,
  7. Color? backgroundColor,
})

Implementation

const TextWithLabel({
  super.key,
  this.label,
  required this.text,
  this.description,
  required this.onTap,
  this.iconBackgroundColor,
  this.backgroundColor,
});