superlint/test/linters/dart/dart_good_1.dart
Marco Ferrari 4d9eaa5c54
build: update Dart, dart analyzer to 3.2.4 (#5065)
Recent versions of dart analyzer don't support the --options
configuration option anymore, so we cannot pass an arbitrary
configuration file. This commit removes the default dart analyzer
configuration file as well, because it's not needed anymore.
2023-12-26 22:14:57 +01:00

4 lines
53 B
Dart

class Point {
int x, y;
Point(this.x, this.y);
}