reflectionGenerator function
Implementation
ReflectionGenerator reflectionGenerator(BuilderOptions options) {
var config = Map<String, Object>.from(options.config);
config.putIfAbsent('entry_points', () => ['**.dart']);
return ReflectionGenerator(options);
}