popup method

void popup(
  1. BuildContext context
)

Show About popup

Implementation

void popup(BuildContext context) async {
  fill(context);
  showDialog(
    context: context,
    builder: (context) => SimpleDialog(
      title: widgetTitle(),
      children: content,
    ),
  );
}