showDialg method
Implementation
void showDialg(PanelyDialogType type) {
if (type == PanelyDialogType.custom) {
_dialog.showCustom(
title: "aaaa",
child: const SizedBox(
height: 200,
width: 200,
),
);
}
if (type == PanelyDialogType.confirmation) {
_dialog.showConfirmation(
title: "aaaa",
description: "aaaa",
);
}
}