equatableGenerator function
Builder
equatableGenerator(
- 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',
);
}