descriptionWithLocale method

NSString descriptionWithLocale(
  1. ObjCObject? locale
)

descriptionWithLocale:

Implementation

NSString descriptionWithLocale(objc.ObjCObject? locale) {
  objc.checkOsVersionInternal(
    'NSOrderedSet.descriptionWithLocale:',
    iOS: (false, (5, 0, 0)),
    macOS: (false, (10, 7, 0)),
  );
  final $ret = _objc_msgSend_1sotr3r(
    object$.ref.pointer,
    _sel_descriptionWithLocale_,
    locale?.ref.pointer ?? ffi.nullptr,
  );
  return NSString.fromPointer($ret, retain: true, release: true);
}