init method

Future<void> init()

Call this function in your project's bootstrap. Ensure the guards defined here contains all the necessary for being setup, otherwise add them later with addGuard

Implementation

Future<void> init() async {
  await Future.wait(guards.map(_setUpGuard));
}