prepare method
Override this method to perform initialization tasks.
This method allows this instance to perform any initialization (other than setting up the entryPoint). This method is often used to set up services that Handlers use to fulfill their duties. This method is invoked prior to entryPoint, so that the services it creates can be injected into Handlers.
By default, this method does nothing.
Implementation
Future<void> prepare() async {}