getAlertDialogTitlePadding static method
EdgeInsetsGeometry?
getAlertDialogTitlePadding(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static EdgeInsetsGeometry? getAlertDialogTitlePadding(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.alertDialogTitlePadding ??
style?.alertDialogTitlePadding ??
getStyleByType(UpConfig.of(context).theme, colorType)
.alertDialogTitlePadding;
}