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