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