boot method

  1. @override
Future<void> boot()

register anything you want inside the service container boot your classes here the app won't unless all Launchers are done

Implementation

@override
Future<void> boot() async {
  Locators.put<SharedPreferences>(
    await SharedPreferences.getInstance(),
  );
}