TIMUIKitSearch constructor
const
TIMUIKitSearch({
- required dynamic onTapConversation(),
- Key? key,
- @Deprecated("You are supposed to use [TIMUIKitSearchMsgDetail], if you tend to search inside a specific conversation, includes c2c and group") V2TimConversation? conversation,
- @Deprecated("You are supposed to use [onEnterSearchInConversation], though the effects are the same.") dynamic onEnterConversation(
- V2TimConversation conversation,
- String initKeyword
- bool? isAutoFocus = true,
- dynamic onEnterSearchInConversation(
- V2TimConversation conversation,
- String initKeyword
- VoidCallback? onBack,
Implementation
const TIMUIKitSearch(
{required this.onTapConversation,
Key? key,
@Deprecated("You are supposed to use [TIMUIKitSearchMsgDetail], if you tend to search inside a specific conversation, includes c2c and group")
this.conversation,
@Deprecated("You are supposed to use [onEnterSearchInConversation], though the effects are the same.")
this.onEnterConversation,
this.isAutoFocus = true,
this.onEnterSearchInConversation,
this.onBack})
: super(key: key);