Skip to content

Instantly share code, notes, and snippets.

@yarn-rp
Created July 31, 2023 22:33
Show Gist options
  • Save yarn-rp/38615ac9fe3f87b56e78c87fa03218d1 to your computer and use it in GitHub Desktop.
Save yarn-rp/38615ac9fe3f87b56e78c87fa03218d1 to your computer and use it in GitHub Desktop.
example using nonConstMyClass version
MyClass nonConstMyClass(int value) => MyClass(value);
void main() {
test('ValueEquality', (){
final a = nonConstMyClass(1);
final b = nonConstMyClass(2);
expect(a, b);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment