import 'package:flutter/material.dart'; import 'package:toastification/toastification.dart'; class Toast { static void showError(String message) { toastification.show( type: ToastificationType.error, description: Text(message), style: ToastificationStyle.flatColored, alignment: Alignment.bottomCenter, autoCloseDuration: Duration(seconds: 5), ); } static void showSuccess(String message) { toastification.show( type: ToastificationType.success, description: Text(message), style: ToastificationStyle.flatColored, alignment: Alignment.bottomCenter, autoCloseDuration: Duration(seconds: 5), ); } }