I want to do something like this : ```dart final GetIt locator = GetIt.instance; void setupLocator() { locator.registerLazySingleton<Section>(() => Section(title: "HomeView")); locator.registerLazySingleton<Section>(() => Section(title: "ProfileView")); } ```