<itemvalue="Return the presentation of this type as it should appear when presented to users in contexts such as error messages. If [withNullability] is `true`, then [NullabilitySuffix.question] and [NullabilitySuffix.star] will be be represented as `?` and ``. [NullabilitySuffix.none] does not have any explicit presentation. If [withNullability] is `false`, nullability suffixes will not be included into the presentation. Clients should not depend on the content of the returned value as it will be changed if doing so would improve the UX."/>
<itemvalue="get Display String"/>
<itemvalue="Wrap [generator] as a [Builder] that generates Dart library files. [generatedExtension] indicates what files will be created for each `.dart` input. Defaults to `.g.dart`, however this should usually be changed to avoid conflicts with outputs from a [SharedPartBuilder]. If [generator] will create additional outputs through the [BuildStep] they should be indicated in [additionalOutputExtensions]. [formatOutput] is called to format the generated code. Defaults to [DartFormatter.format]. [header] is used to specify the content at the top of each generated file. If `null`, the content of [defaultFileHeader] is used. If [header] is an empty `String` no header is added. [allowSyntaxErrors] indicates whether to allow syntax errors in input libraries."/>
@ -52,9 +55,6 @@
<itemvalue="covariant"/>
<itemvalue="verification Codes"/>
<itemvalue="A [TextInputFormatter] can be optionally injected into an [EditableText] to provide as-you-type validation and formatting of the text being edited. Text modification should only be applied when text is being committed by the IME and not on text under composition (i.e., only when [TextEditingValue.composing] is collapsed). See also the [FilteringTextInputFormatter], a subclass that removes characters that the user tries to enter if they do, or do not, match a given pattern (as applicable). To create custom formatters, extend the [TextInputFormatter] class and implement the [formatEditUpdate] method. Handling emojis and other complex characters {@macro flutter.widgets.EditableText.onChanged} See also: [EditableText] on which the formatting apply. [FilteringTextInputFormatter], a provided formatter for filtering characters."/>