show static method
Implementation
static Future<bool> show({
required BuildContext context,
required String title,
required List<Widget> content,
bool useInternalScroll = false,
bool persistent = false,
double padding = 20,
double width = 400,
double? height,
List<Widget>? titleActions,
}) async {
return true == await showDialog(
context: context,
barrierColor: Colors.transparent,
builder: (BuildContext context) => ADialog(
title: title,
titleActions: titleActions,
content: content,
persistent: persistent,
padding: padding,
width: width,
useInternalScroll: useInternalScroll,
height: height,
),
);
}