showPopupDialog static method
void
showPopupDialog({})
Implementation
static void showPopupDialog({
context,
required String title,
required List<Widget> content,
String? subTitle,
final String? fontFamily,
}) {
showDialog(
context: context,
builder: (context) => GNCustomPopUpDialog(
title: title,
content: content,
fontFamily: fontFamily,
subTitle: subTitle,
),
);
}