@@ -15,8 +15,8 @@ class DotClipper extends CustomClipper<Rect> {
1515 @override
1616 Rect getClip (Size size) {
1717 double radius = min (maxLoadingCircleSize,
18- min (size.width, size.height) - 2 * loadingCirclePadding) /
19- 2 -
18+ min (size.width, size.height) - 2 * loadingCirclePadding) /
19+ 2 -
2020 dotRadius;
2121 double x = size.width / 2 ;
2222 double y = size.height / 2 ;
@@ -56,9 +56,9 @@ class PathDotClipper extends CustomClipper<Path> {
5656 @override
5757 bool operator == (Object other) =>
5858 identical (this , other) ||
59- other is InvertedDotClipper &&
60- runtimeType == other.runtimeType &&
61- radiusFactor == other.radiusFactor;
59+ other is InvertedDotClipper &&
60+ runtimeType == other.runtimeType &&
61+ radiusFactor == other.radiusFactor;
6262
6363 @override
6464 int get hashCode => radiusFactor.hashCode;
@@ -87,10 +87,10 @@ class InvertedDotClipper extends CustomClipper<Path> {
8787 @override
8888 bool operator == (Object other) =>
8989 identical (this , other) ||
90- other is InvertedDotClipper &&
91- runtimeType == other.runtimeType &&
92- radiusFactor == other.radiusFactor;
90+ other is InvertedDotClipper &&
91+ runtimeType == other.runtimeType &&
92+ radiusFactor == other.radiusFactor;
9393
9494 @override
9595 int get hashCode => radiusFactor.hashCode;
96- }
96+ }
0 commit comments