localizedAttributedStringWithFormat$1 static method

NSAttributedString localizedAttributedStringWithFormat$1(
  1. NSAttributedString format, {
  2. required NSAttributedStringFormattingOptions options,
})

localizedAttributedStringWithFormat:options:

Implementation

static NSAttributedString localizedAttributedStringWithFormat$1(NSAttributedString format, {required NSAttributedStringFormattingOptions options}) {
objc.checkOsVersionInternal('NSAttributedString.localizedAttributedStringWithFormat:options:', iOS: (false, (15, 0, 0)), macOS: (false, (12, 0, 0)));
  final _ret = _objc_msgSend_s058d2(_class_NSAttributedString, _sel_localizedAttributedStringWithFormat_options_, format.ref.pointer, options.value);
  return NSAttributedString.castFromPointer(_ret, retain: true, release: true);
}