setBadgeTextAttributes method
Provide text attributes to use to draw the badge text for the given singular control state (Normal, Disabled, Focused, Selected, or Highlighted). Default values will be supplied for keys that are not provided by this dictionary. See NSAttributedString.h for details on what keys are available.
Implementation
void setBadgeTextAttributes(objc.NSDictionary? textAttributes, {required int forState}) {
objc.checkOsVersionInternal('UITabBarItem.setBadgeTextAttributes:forState:', iOS: (false, (10, 0, 0)));
_objc_msgSend_dldayz(
object$.ref.pointer,
_sel_setBadgeTextAttributes_forState_,
textAttributes?.ref.pointer ?? ffi.nullptr,
forState,
);
}