BlurryPopupTitle constructor

const BlurryPopupTitle({
  1. Key? key,
  2. required LAYOUT_TYPE layoutType,
  3. required Color renderingColor,
  4. required IconData? icon,
  5. required DEFAULT_THEMES? blurryType,
  6. required String title,
  7. TextStyle? textStyle,
})

Implementation

const BlurryPopupTitle({
  Key? key,
  required this.layoutType,
  required this.renderingColor,
  required this.icon,
  required this.blurryType,
  required this.title,
  this.textStyle,
}) : super(key: key);