setTitleShadowColor method

void setTitleShadowColor(
  1. UIColor? color, {
  2. required int forState,
})

setTitleShadowColor:forState:

Implementation

void setTitleShadowColor(UIColor? color, {required int forState}) {
  final _$$ref = object$.ref;
  final _$$ref$1 = color?.ref;
  objc.checkOsVersionInternal('UIButton.setTitleShadowColor:forState:', iOS: (false, (2, 0, 0)));
  _objc_msgSend_dldayz(
    _$$ref.pointer,
    _sel_setTitleShadowColor_forState_,
    _$$ref$1?.pointer ?? ffi.nullptr,
    forState,
  );
}