equatableGenerator function

Builder equatableGenerator(
  1. BuilderOptions options
)

The entry point for the equatable_gen generator.

Implementation

Builder equatableGenerator(BuilderOptions options) {
  final settings = Settings.fromJson(options.config);

  return SharedPartBuilder(
    [
      EquatableGenerator(settings),
    ],
    'equatable_gen',
  );
}