inputAssistantItem property
UITextInputAssistantItem
get
inputAssistantItem
This method is for clients that wish to put buttons on the Shortcuts Bar, shown on top of the keyboard. You may modify the returned inputAssistantItem to add to or replace the existing items on the bar. Modifications made to the returned UITextInputAssistantItem are reflected automatically. This method should not be overridden. Goes up the responder chain.
Implementation
UITextInputAssistantItem get inputAssistantItem {
objc.checkOsVersionInternal('UIResponder.inputAssistantItem', iOS: (false, (9, 0, 0)));
final _ret = _objc_msgSend_151sglz(this.ref.pointer, _sel_inputAssistantItem);
return UITextInputAssistantItem.castFromPointer(_ret, retain: true, release: true);
}