<itemvalue="The type of the [RawAutocomplete] callback which returns a [Widget] that displays the specified [options] and calls [onSelected] if the user selects an option. The returned widget from this callback will be wrapped in an [AutocompleteHighlightedOption] inherited widget. This will allow this callback to determine which option is currently highlighted for keyboard navigation. See also: [RawAutocomplete.optionsViewBuilder], which is of this type."/>
<itemvalue="The type of the [RawAutocomplete] callback which returns a [Widget] that displays the specified [options] and calls [onSelected] if the user selects an option. The returned widget from this callback will be wrapped in an [AutocompleteHighlightedOption] inherited widget. This will allow this callback to determine which option is currently highlighted for keyboard navigation. See also: [RawAutocomplete.optionsViewBuilder], which is of this type."/>
<itemvalue="{@macro flutter.widgets.RawAutocomplete.optionsViewBuilder} If not provided, will build a standard Material-style list of results by default."/>
<itemvalue="{@macro flutter.widgets.RawAutocomplete.optionsViewBuilder} If not provided, will build a standard Material-style list of results by default."/>
@ -60,14 +62,12 @@
<itemvalue="Adds a description of a specific type of widget missing from the current build context's ancestry tree. You can find an example of using this method in [debugCheckHasMaterial]."/>
<itemvalue="Adds a description of a specific type of widget missing from the current build context's ancestry tree. You can find an example of using this method in [debugCheckHasMaterial]."/>
<itemvalue="Returns the nearest widget of the given type `T` and creates a dependency on it, or null if no appropriate widget is found. The widget found will be a concrete [InheritedWidget] subclass, and calling [dependOnInheritedWidgetOfExactType] registers this build context with the returned widget. When that widget changes (or a new widget of that type is introduced, or the widget goes away), this build context is rebuilt so that it can obtain new values from that widget. {@template flutter.widgets.BuildContext.dependOnInheritedWidgetOfExactType} This is typically called implicitly from `of()` static methods, e.g. [Theme.of]."/>
<itemvalue="Returns the nearest widget of the given type `T` and creates a dependency on it, or null if no appropriate widget is found. The widget found will be a concrete [InheritedWidget] subclass, and calling [dependOnInheritedWidgetOfExactType] registers this build context with the returned widget. When that widget changes (or a new widget of that type is introduced, or the widget goes away), this build context is rebuilt so that it can obtain new values from that widget. {@template flutter.widgets.BuildContext.dependOnInheritedWidgetOfExactType} This is typically called implicitly from `of()` static methods, e.g. [Theme.of]."/>
<itemvalue="This callback shouldn't be used to update the slider [value] (use [onChanged] for that), but rather to be notified when the user has started selecting a new value by starting a drag or with a tap. The value passed will be the last [value] that the slider had before the change began."/>
<itemvalue="This callback shouldn't be used to update the slider [value] (use [onChanged] for that), but rather to be notified when the user has started selecting a new value by starting a drag or with a tap. The value passed will be the last [value] that the slider had before the change began."/>
<itemvalue="Called when the user starts selecting a new value for the slider."/>
<itemvalue="If [exclusive] is `true` and to-be-created file already exists, this operation completes the future with a [FileSystemException]. If [exclusive] is `false`, existing files are left untouched by [createSync]. Calling [createSync] on an existing file still might fail if there are restrictive permissions on the file."/>