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