changes by format tool
diff --git a/packages/e2e/lib/_extension_io.dart b/packages/e2e/lib/_extension_io.dart
index e8eab3c..a8e66fc 100644
--- a/packages/e2e/lib/_extension_io.dart
+++ b/packages/e2e/lib/_extension_io.dart
@@ -7,6 +7,7 @@
 /// See also:
 ///
 ///  * [_extension_web.dart], which has the dart:html implementation
-void registerWebServiceExtension(Future<Map<String, dynamic>> Function(Map<String, String>) call) {
+void registerWebServiceExtension(
+    Future<Map<String, dynamic>> Function(Map<String, String>) call) {
   throw UnsupportedError('Use registerServiceExtension instead');
 }
diff --git a/packages/e2e/lib/_extension_web.dart b/packages/e2e/lib/_extension_web.dart
index e97b034..8bf5950 100644
--- a/packages/e2e/lib/_extension_web.dart
+++ b/packages/e2e/lib/_extension_web.dart
@@ -18,13 +18,15 @@
 /// See also:
 ///
 ///  * [_extension_io.dart], which has the dart:io implementation
-void registerWebServiceExtension(Future<Map<String, dynamic>> Function(Map<String, String>) call) {
-  js_util.setProperty(html.window, '\$flutterDriver', allowInterop((dynamic message) async {
+void registerWebServiceExtension(
+    Future<Map<String, dynamic>> Function(Map<String, String>) call) {
+  js_util.setProperty(html.window, '\$flutterDriver',
+      allowInterop((dynamic message) async {
     // ignore: undefined_function, undefined_identifier
     final Map<String, String> params = Map<String, String>.from(
         jsonDecode(message as String) as Map<String, dynamic>);
-    final Map<String, dynamic> result = Map<String, dynamic>.from(
-        await call(params));
+    final Map<String, dynamic> result =
+        Map<String, dynamic>.from(await call(params));
     context['\$flutterDriverResult'] = json.encode(result);
   }));
 }