showToast method

Future showToast({
  1. required String text,
})

Implementation

Future showToast({required String text}) async {
  await this.showAndDismiss(ProgressHudType.toast, text);
}