SearchSupportParams<T> constructor

const SearchSupportParams<T>({
  1. @Default(true) bool autoShow,
  2. RefreshController<T>? controller,
  3. required SearchSupportCoreUiBuild childBuilder,
  4. SearchSupportActionListening? listening,
})

Implementation

const factory SearchSupportParams(
    {
    ///是否自动显示搜索结果
    @Default(true) bool autoShow,
    //搜索控制器
    RefreshController<T>? controller,
    //展示组件的容器,需要固定高度
    required SearchSupportCoreUiBuild childBuilder,
    SearchSupportActionListening? listening}) = _SearchSupportParams;