toast function
void
toast(
- String message, {
- required BuildContext context,
- Duration? duration,
- TextStyle? textStyle,
Implementation
void toast(String message, {required BuildContext context, Duration? duration, TextStyle? textStyle}) async{
NUIToast.toast(context, message, duration: duration, textStyle: textStyle);
}