systemImageNamed$1 static method
systemImageNamed:withConfiguration:
Implementation
static UIImage? systemImageNamed$1(objc.NSString name, {UIImageConfiguration? withConfiguration}) {
objc.checkOsVersionInternal('UIImage.systemImageNamed:withConfiguration:', iOS: (false, (13, 0, 0)));
final $ret = _objc_msgSend_15qeuct(
_class_UIImage,
_sel_systemImageNamed_withConfiguration_,
name.ref.pointer,
withConfiguration?.ref.pointer ?? ffi.nullptr,
);
return $ret.address == 0 ? null : UIImage.fromPointer($ret, retain: true, release: true);
}