Migrated from [dartbug.com/22004](http:dartbug.com/22004): Instead of: ``` class Point { int x, y; Point(this.x, this.y) {} } ``` prefer: ``` class Point { int x, y; Point(this.x, this.y); } ```