attributesAtIndex method

NSDictionary attributesAtIndex(
  1. int location, {
  2. required Pointer<NSRange> effectiveRange,
})

attributesAtIndex:effectiveRange:

Implementation

objc.NSDictionary attributesAtIndex(int location, {required ffi.Pointer<objc.NSRange> effectiveRange}) {
objc.checkOsVersionInternal('NSAttributedString.attributesAtIndex:effectiveRange:', iOS: (false, (3, 2, 0)), macOS: (false, (10, 0, 0)));
  final _ret = _objc_msgSend_1776v9k(this.ref.pointer, _sel_attributesAtIndex_effectiveRange_, location, effectiveRange);
  return objc.NSDictionary.castFromPointer(_ret, retain: true, release: true);
}