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() {
  try {
    if (FirebaseAuth.instance.currentUser != null) {
      getUserProfile();
    }
  } on FirebaseException catch (e) {
    log('Error loading profile ${e.toString()}');
  }
}