Skip to content

Instantly share code, notes, and snippets.

@yarn-rp
Created July 29, 2023 23:33
Show Gist options
  • Save yarn-rp/83146c8c78f782d9eb2f1257a404876c to your computer and use it in GitHub Desktop.
Save yarn-rp/83146c8c78f782d9eb2f1257a404876c to your computer and use it in GitHub Desktop.
Example of class using Equatable
class MyClass extends Equatable {
const MyClass(this.id);
final int id;
@override
List<Object> get props => [id];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment