showProgressToast static method
void
showProgressToast(
- BuildContext context, {
- required String text,
- dynamic durationInSeconds = 65,
Implementation
static void showProgressToast(BuildContext context, {required String text, durationInSeconds = 65}) {
clearFocus(context);
showOverlay(context, layerId: _progressLayerId, durationInSeconds: durationInSeconds, widget: OverlayProgress(text));
}