messageDialog function
Implementation
AlertDialog messageDialog(String prop) {
return alertDialog(
prop,
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(5)),
titlePadding: const EdgeInsets.fromLTRB(20, 15, 20, 20),
textAlign: TextAlign.left,
);
}