dialogShape function

ShapeBorder dialogShape([
  1. double? borderRadius
])

Implementation

ShapeBorder dialogShape([double? borderRadius]) {
  return RoundedRectangleBorder(
    borderRadius: radius(borderRadius ?? defaultRadius),
  );
}