Closed
Description
Migrated from 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);
}
Migrated from 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);
}