TextLogoWidget constructor

const TextLogoWidget({
  1. Key? key,
  2. required String text,
  3. Color? backgroundColor,
})

Implementation

const TextLogoWidget({
  Key? key,
  required this.text,
  this.backgroundColor,
}) : super(key: key);