systemFontOfSize$1 static method

UIFont systemFontOfSize$1(
  1. double fontSize, {
  2. required double weight,
})

systemFontOfSize:weight:

Implementation

static UIFont systemFontOfSize$1(double fontSize, {required double weight}) {
  objc.checkOsVersionInternal('UIFont.systemFontOfSize:weight:', iOS: (false, (8, 2, 0)));
  final _ret = _objc_msgSend_1n2vn5t(_class_UIFont, _sel_systemFontOfSize_weight_, fontSize, weight);
  return UIFont.castFromPointer(_ret, retain: true, release: true);
}