showToastSuccess method

dynamic showToastSuccess({
  1. String? title,
  2. required String description,
  3. ToastNotificationStyleType? style,
})

Displays a Toast message containing "Success" for the title, you only need to provide a description.

Implementation

showToastSuccess(
    {String? title,
    required String description,
    ToastNotificationStyleType? style}) {
  showToast(
      title: title ?? "Success",
      description: description,
      style: style ?? ToastNotificationStyleType.SUCCESS);
}