SearchViewTheme constructor

const SearchViewTheme({
  1. Key? key,
  2. required SearchViewThemeData data,
  3. required Widget child,
})

Creates a const theme that controls the configurations for the search view created by the SearchAnchor widget.

Implementation

const SearchViewTheme({
  super.key,
  required this.data,
  required super.child,
});