RoundedLabel constructor

const RoundedLabel({
  1. Key? key,
  2. required String labelText,
  3. Color? backgroundColor,
  4. Color? textColor,
})

Implementation

const RoundedLabel({
  super.key,
  required this.labelText,
  this.backgroundColor,
  this.textColor,
});