showSuccess function

dynamic showSuccess(
  1. String content
)

Implementation

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