onReady method

  1. @override
void onReady()
override

Called 1 frame after onInit(). It is the perfect place to enter navigation events, like snackbar, dialogs, or a new route, or async request.

Implementation

@override
void onReady() {
  Log.debug('onReady()', '$runtimeType');

  // Web gets its updates out of the box with a simple page refresh.
  if (!PlatformUtils.isWeb) {
    fetchUpdates();
  }

  if (Config.appcast.isNotEmpty) {
    _timer = Timer.periodic(_refreshPeriod, (_) {
      fetchUpdates();
    });
  }

  super.onReady();
}