custom static method

void custom({
  1. String? title,
  2. Widget? content,
  3. List<Widget>? actions,
  4. double? padding,
})

Implementation

static void custom({
  String? title,
  Widget? content,
  List<Widget>? actions,
  double? padding,
}) {
  return _base(
    title: title,
    content: content,
    actions: actions,
    padding: padding ?? 0,
  );
}