font property

  1. @Deprecated('Specify an attributed title with a custom font')
UIFont get font

font

Implementation

@Deprecated('Specify an attributed title with a custom font')
UIFont get font {
  final _$$ref = object$.ref;
  objc.checkOsVersionInternal('UIButton.font', iOS: (false, (2, 0, 0)));
  final $ret = _objc_msgSend_151sglz(_$$ref.pointer, _sel_font);
  return UIFont.fromPointer($ret, retain: true, release: true);
}
  1. @Deprecated('Specify an attributed title with a custom font')
set font (UIFont value)

setFont:

Implementation

@Deprecated('Specify an attributed title with a custom font')
set font(UIFont value) {
  final _$$ref = object$.ref;
  final _$$ref$1 = value.ref;
  objc.checkOsVersionInternal('UIButton.setFont:', iOS: (false, (2, 0, 0)));
  _objc_msgSend_xtuoz7(_$$ref.pointer, _sel_setFont_, _$$ref$1.pointer);
}