reflectionGenerator function

ReflectionGenerator reflectionGenerator(
  1. BuilderOptions options
)

Implementation

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