smartDashesType property
UITextSmartDashesType
get
smartDashesType
smartDashesType
Implementation
UITextSmartDashesType get smartDashesType {
final _$$ref = object$.ref;
objc.checkOsVersionInternal('UITextField.smartDashesType', iOS: (false, (11, 0, 0)));
if (!objc.respondsToSelector(_$$ref.pointer, _sel_smartDashesType)) {
throw objc.UnimplementedOptionalMethodException('UITextField', 'smartDashesType');
}
final $ret = _objc_msgSend_1whqp0d(_$$ref.pointer, _sel_smartDashesType);
return UITextSmartDashesType.fromValue($ret);
}
set
smartDashesType
(UITextSmartDashesType value)
setSmartDashesType:
Implementation
set smartDashesType(UITextSmartDashesType value) {
final _$$ref = object$.ref;
objc.checkOsVersionInternal('UITextField.setSmartDashesType:', iOS: (false, (11, 0, 0)));
if (!objc.respondsToSelector(_$$ref.pointer, _sel_setSmartDashesType_)) {
throw objc.UnimplementedOptionalMethodException('UITextField', 'setSmartDashesType:');
}
_objc_msgSend_1dop8ih(_$$ref.pointer, _sel_setSmartDashesType_, value.value);
}