getAlertDialogTitlePadding static method

EdgeInsetsGeometry? getAlertDialogTitlePadding(
  1. BuildContext context, {
  2. UpStyle? override,
  3. UpStyle? style,
  4. 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;
}