Skip to content

Instantly share code, notes, and snippets.

@marcossevilla
Created January 25, 2021 20:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcossevilla/070170ccc310cde7a978011a43440b94 to your computer and use it in GitHub Desktop.
Save marcossevilla/070170ccc310cde7a978011a43440b94 to your computer and use it in GitHub Desktop.
class SomeClass {
SomeClass({this.id});
final int id;
}
void main() {
final first = SomeClass(id: 0);
final second = SomeClass(id: 0);
print(first == second);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment