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