LazyFactoryGenerator constructor

LazyFactoryGenerator(
  1. Set<ImportableType> prefixedTypes, {
  2. dynamic isLazySingleton = false,
})

Implementation

LazyFactoryGenerator(Set<ImportableType> prefixedTypes, {this.isLazySingleton = false})
    : funcName = isLazySingleton ? 'lazySingleton' : 'factory',
      super(prefixedTypes);