autoequal_gen 0.1.0 copy "autoequal_gen: ^0.1.0" to clipboard
autoequal_gen: ^0.1.0 copied to clipboard

outdated

Dart codegenerator for Equatable.

Pub Package

Provides Dart Build System builder for generating List<Object> _autoequalProps extensions for classes annotated with autoequal.

Usage #

In your pubspec.yaml file:

  • Add to dependencies section autoequal: ^0.1.0
  • Add to dev_dependencies section autoequal_gen: ^0.1.0
  • Add to dev_dependencies section build_runner: ^1.10.4
  • Set environment to at least Dart 2.9.0 version like so: ">=2.9.0 <3.0.0"

Your pubspec.yaml should look like so:

name: project_name
description: project description
version: 1.0.0

environment:
  sdk: ">=2.9.0 <3.0.0"

dependencies:
  ...
  autoequal: ^0.1.0
  
dev_dependencies:
  ...
  build_runner: ^1.10.4
  autoequal_gen: ^0.1.0

Annotate your class with autoequal annotation:

import 'package:autoequal/autoequal.dart';
import 'package:equatable/equatable.dart';

part 'some_class.g.dart';

@autoequal
class SomeClass extends Equatable {
  final String id;

  SomeClass({this.id, this.random});

  @override
  List<Object> get props => _autoequalProps; //_autoequalProps will be generated
}

Make sure that you set the part file as in the example above part 'your_file_name.g.dart';.

Launch code generation:

flutter pub run build_runner build

The extension will be generated:

// GENERATED CODE - DO NOT MODIFY BY HAND

part of 'some_class.dart';

// **************************************************************************
// AutoequalGenerator
// **************************************************************************

extension SomeClassAutoequal on SomeClass {
  List<Object> get _autoequalProps => [id];
}

Additional features #

Ignore field

The autoequal will exclude any field annotated with ignoreAutoequal.

@ignoreAutoequal
final int random;