BlurryPopupButtonText constructor

const BlurryPopupButtonText({
  1. Key? key,
  2. required String text,
  3. required Color textColor,
  4. required TextStyle? buttonTextStyle,
  5. required LAYOUT_TYPE layoutType,
})

Implementation

const BlurryPopupButtonText({
  Key? key,
  required this.text,
  required this.textColor,
  required this.buttonTextStyle,
  required this.layoutType,
}) : super(key: key);