showToast<T> method

void showToast<T>(
  1. T text
)

Implementation

void showToast<T>(T text) {
  ToastListOverlay.of<T>(this).show(this, text);
}