singleton<T extends Object> static method

Bind<T> singleton<T extends Object>(
  1. T inject(
    1. Injector i
    ), {
  2. bool export = false,
})

Bind a 'Singleton' class. Built together with the module. The instance will always be the same.

Implementation

static Bind<T> singleton<T extends Object>(T Function(Injector i) inject,
    {bool export = false}) {
  return Bind<T>(inject, isSingleton: true, isLazy: false, export: export);
}