fontWithSize method

UIFont fontWithSize(
  1. double fontSize
)

fontWithSize:

Implementation

UIFont fontWithSize(double fontSize) {
  objc.checkOsVersionInternal('UIFont.fontWithSize:', iOS: (false, (2, 0, 0)));
  final _ret = _objc_msgSend_oa8mke(this.ref.pointer, _sel_fontWithSize_, fontSize);
  return UIFont.castFromPointer(_ret, retain: true, release: true);
}