initWithDisplayP3Red method
initWithDisplayP3Red:green:blue:alpha:
Implementation
UIColor initWithDisplayP3Red(
double displayP3Red, {
required double green,
required double blue,
required double alpha,
}) {
objc.checkOsVersionInternal('UIColor.initWithDisplayP3Red:green:blue:alpha:', iOS: (false, (10, 0, 0)));
final _ret = _objc_msgSend_q2wq4h(
this.ref.retainAndReturnPointer(),
_sel_initWithDisplayP3Red_green_blue_alpha_,
displayP3Red,
green,
blue,
alpha,
);
return UIColor.castFromPointer(_ret, retain: false, release: true);
}