ProfileTextImage constructor

const ProfileTextImage({
  1. Key? key,
  2. required String text,
  3. double fontSize = 15,
  4. Color? bgColor,
  5. double radius = 25,
  6. Color fontColor = Colors.white,
})

Implementation

const ProfileTextImage(
    {super.key,
    required this.text,
    this.fontSize = 15,
    this.bgColor,
    this.radius = 25,
    this.fontColor = Colors.white});