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