localizedStringWithFormat static method

NSMutableString localizedStringWithFormat(
  1. NSString format
)
override

localizedStringWithFormat:

Implementation

static NSMutableString localizedStringWithFormat(NSString format) {
  final $ret = _objc_msgSend_1sotr3r(
    _class_NSMutableString,
    _sel_localizedStringWithFormat_,
    format.ref.pointer,
  );
  return NSMutableString.fromPointer($ret, retain: true, release: true);
}