Fix Mockito formatting for recent Dart versions

There were changes to the formatter that made `lib/annotation.dart`
badly formatted.

PiperOrigin-RevId: 571001081
diff --git a/lib/annotations.dart b/lib/annotations.dart
index 8fbeae0..362db02 100644
--- a/lib/annotations.dart
+++ b/lib/annotations.dart
@@ -149,10 +149,10 @@
     Symbol? as,
     @Deprecated('Avoid adding concrete implementation to mock classes. '
         'Use a manual implementation of the class without `Mock`')
-        List<Type> mixingIn = const [],
+    List<Type> mixingIn = const [],
     @Deprecated('Specify "missing stub" behavior with the '
         '[onMissingStub] parameter.')
-        this.returnNullOnMissingStub = false,
+    this.returnNullOnMissingStub = false,
     this.unsupportedMembers = const {},
     this.fallbackGenerators = const {},
     this.onMissingStub,