enablesReturnKeyAutomatically property
bool
get
enablesReturnKeyAutomatically
enablesReturnKeyAutomatically
Implementation
bool get enablesReturnKeyAutomatically {
final _$$ref = object$.ref;
if (!objc.respondsToSelector(_$$ref.pointer, _sel_enablesReturnKeyAutomatically)) {
throw objc.UnimplementedOptionalMethodException('UITextField', 'enablesReturnKeyAutomatically');
}
return _objc_msgSend_91o635(_$$ref.pointer, _sel_enablesReturnKeyAutomatically);
}
set
enablesReturnKeyAutomatically
(bool value)
setEnablesReturnKeyAutomatically:
Implementation
set enablesReturnKeyAutomatically(bool value) {
final _$$ref = object$.ref;
if (!objc.respondsToSelector(_$$ref.pointer, _sel_setEnablesReturnKeyAutomatically_)) {
throw objc.UnimplementedOptionalMethodException('UITextField', 'setEnablesReturnKeyAutomatically:');
}
_objc_msgSend_1s56lr9(_$$ref.pointer, _sel_setEnablesReturnKeyAutomatically_, value);
}