fontWithName static method
fontWithName:size:
Implementation
static UIFont? fontWithName(objc.NSString fontName, {required double size}) {
objc.checkOsVersionInternal('UIFont.fontWithName:size:', iOS: (false, (2, 0, 0)));
final _ret = _objc_msgSend_6plvbo(_class_UIFont, _sel_fontWithName_size_, fontName.ref.pointer, size);
return _ret.address == 0 ? null : UIFont.castFromPointer(_ret, retain: true, release: true);
}