show method

void show(
  1. BuildContext context
)

Implementation

void show(final BuildContext context) {
  showDialog(
    context: context,
    builder: (final BuildContext context) => DialogComponent(
      title: title,
      message: message,
      actions: actions,
      icon: icon,
    ),
  );
}