TextBuilder constructor

const TextBuilder({
  1. Key? key,
  2. required double value,
  3. required String text,
  4. required double padding,
  5. required Color? backgroundColor,
  6. required Color? color,
  7. required double width,
})

Implementation

const TextBuilder(
    {super.key,
    required this.value,
    required this.text,
    required this.padding,
    required this.backgroundColor,
    required this.color,
    required this.width});