smartQuotesType property
UITextSmartQuotesType
get
smartQuotesType
smartQuotesType
Implementation
UITextSmartQuotesType get smartQuotesType {
final _$$ref = object$.ref;
objc.checkOsVersionInternal('UITextField.smartQuotesType', iOS: (false, (11, 0, 0)));
if (!objc.respondsToSelector(_$$ref.pointer, _sel_smartQuotesType)) {
throw objc.UnimplementedOptionalMethodException('UITextField', 'smartQuotesType');
}
final $ret = _objc_msgSend_10bf728(_$$ref.pointer, _sel_smartQuotesType);
return UITextSmartQuotesType.fromValue($ret);
}
set
smartQuotesType
(UITextSmartQuotesType value)
setSmartQuotesType:
Implementation
set smartQuotesType(UITextSmartQuotesType value) {
final _$$ref = object$.ref;
objc.checkOsVersionInternal('UITextField.setSmartQuotesType:', iOS: (false, (11, 0, 0)));
if (!objc.respondsToSelector(_$$ref.pointer, _sel_setSmartQuotesType_)) {
throw objc.UnimplementedOptionalMethodException('UITextField', 'setSmartQuotesType:');
}
_objc_msgSend_1gdngxu(_$$ref.pointer, _sel_setSmartQuotesType_, value.value);
}