show method
Implementation
void show(ShadToast toast) {
_timer?.cancel();
_shown.value = true;
_visibleToast.value = toast;
_controller.forward(from: 0);
final effectiveDuration = toast.duration ?? kDefaultToastDuration;
_timer = Timer(effectiveDuration, hide);
}