PanaraInfoDialogWidget constructor
const
PanaraInfoDialogWidget({
- Key? key,
- String? title,
- required String message,
- required String buttonText,
- required VoidCallback onTapDismiss,
- required PanaraDialogType panaraDialogType,
- Color? textColor = const Color(0xFF707070),
- Color? color = const Color(0xFF179DFF),
- Color? buttonTextColor,
- String? imagePath,
- EdgeInsets? padding = const EdgeInsets.all(24),
- EdgeInsets? margin = const EdgeInsets.all(24),
- required bool noImage,
Implementation
const PanaraInfoDialogWidget({
Key? key,
this.title,
required this.message,
required this.buttonText,
required this.onTapDismiss,
required this.panaraDialogType,
this.textColor = const Color(0xFF707070),
this.color = const Color(0xFF179DFF),
this.buttonTextColor,
this.imagePath,
this.padding = const EdgeInsets.all(24),
this.margin = const EdgeInsets.all(24),
required this.noImage,
}) : super(key: key);