showSuccess function
Implementation
showSuccess(String content) async {
BotToast.showSimpleNotification(
title: content,
onlyOne: false,
hideCloseButton: true,
backgroundColor: const Color(0xFF0DB00A),
titleStyle: const TextStyle(
color: Colors.white,
),
);
}