imageWithTintColor method

UIImage imageWithTintColor(
  1. UIColor color
)

imageWithTintColor:

Implementation

UIImage imageWithTintColor(UIColor color) {
  objc.checkOsVersionInternal('UIImage.imageWithTintColor:', iOS: (false, (13, 0, 0)));
  final $ret = _objc_msgSend_1sotr3r(object$.ref.pointer, _sel_imageWithTintColor_, color.ref.pointer);
  return UIImage.fromPointer($ret, retain: true, release: true);
}