withDelay method

Widget withDelay(
  1. Duration delay
)

Add a delay before showing.

Implementation

Widget withDelay(Duration delay) {
  return _DelayedWidget(delay: delay, child: this);
}