locale property

NSLocale? get locale

Implementation

NSLocale? get locale {
  final _ret = _lib._objc_msgSend_760(_id, _lib._sel_locale1);
  return _ret.address == 0
      ? null
      : NSLocale._(_ret, _lib, retain: true, release: true);
}
set locale (NSLocale? value)

Implementation

set locale(NSLocale? value) {
  return _lib._objc_msgSend_761(
      _id, _lib._sel_setLocale_1, value?._id ?? ffi.nullptr);
}