ScreenDialogWithRRg constructor
const
ScreenDialogWithRRg({
- required String? title,
- required Color cancelButtonColor,
- required AlignmentGeometry titleAlignment,
- double fontSize = AppConstants.fontLargeX,
- FontWeight fontWeight = FontWeight.bold,
- EdgeInsets contentPadding = const EdgeInsets.fromLTRB(24, 15, 24, 24),
- String? description,
- double? borderRadius,
- EdgeInsets? titleTextMargin,
- double? textHeight,
- TextAlign? textAlign,
- Widget? content,
- Color? color,
- Widget? titleIcon,
- Key? key,
Implementation
const ScreenDialogWithRRg({
required this.title,
required this.cancelButtonColor,
required this.titleAlignment,
this.fontSize = AppConstants.fontLargeX,
this.fontWeight = FontWeight.bold,
this.contentPadding = const EdgeInsets.fromLTRB(24, 15, 24, 24),
this.description,
this.borderRadius,
this.titleTextMargin,
this.textHeight,
this.textAlign,
this.content,
this.color,
this.titleIcon,
Key? key,
}) : super(key: key);