descriptionWithLocale method

NSString descriptionWithLocale(
  1. ObjCObject? locale
)

descriptionWithLocale:

Implementation

NSString descriptionWithLocale(objc.ObjCObject? locale) {
  final $ret = _objc_msgSend_1sotr3r(
    object$.ref.pointer,
    _sel_descriptionWithLocale_,
    locale?.ref.pointer ?? ffi.nullptr,
  );
  return NSString.fromPointer($ret, retain: true, release: true);
}