From 8997dd5de0d1c95f3a27e0b8f79c3e7dc19c2edc Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Fri, 29 Jul 2022 17:11:41 -0700 Subject: [PATCH] Fix doc comment line accidentally removed (#108654) Fixing issue in commit c92e001400fcf9064001e993fc6a36e3fb0f56b5 --- packages/flutter/lib/src/services/autofill.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/flutter/lib/src/services/autofill.dart b/packages/flutter/lib/src/services/autofill.dart index 326e0fad50..f1dd457d14 100644 --- a/packages/flutter/lib/src/services/autofill.dart +++ b/packages/flutter/lib/src/services/autofill.dart @@ -22,6 +22,7 @@ class AutofillHints { /// /// This hint will be translated to the below values on different platforms: /// + /// * Android: [AUTOFILL_HINT_POSTAL_ADDRESS_LOCALITY](https://developer.android.com/reference/androidx/autofill/HintConstants#AUTOFILL_HINT_POSTAL_ADDRESS_LOCALITY). /// * iOS: [addressCity](https://developer.apple.com/documentation/uikit/uitextcontenttype). /// * Otherwise, the hint string will be used as-is. static const String addressCity = 'addressCity';