showToast static method

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

show toast text and dismiss automatic

Implementation

static Future showToast({required String text}) async {
  return _globalHud?.showToast(text: text);
}