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