mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-07 17:53:14 -05:00
6 lines
90 B
Dart
6 lines
90 B
Dart
|
// empty_constructor_bodies bad {}
|
||
|
class Point {
|
||
|
int x, y;
|
||
|
Point(this.x, this.y) {}
|
||
|
}
|