fixedSpaceItemOfWidth static method

UIBarButtonItem fixedSpaceItemOfWidth(
  1. double width
)

Construct a new fixed space item with the given width.

Implementation

static UIBarButtonItem fixedSpaceItemOfWidth(double width) {
  objc.checkOsVersionInternal('UIBarButtonItem.fixedSpaceItemOfWidth:', iOS: (false, (14, 0, 0)));
  final _ret = _objc_msgSend_oa8mke(_class_UIBarButtonItem, _sel_fixedSpaceItemOfWidth_, width);
  return UIBarButtonItem.castFromPointer(_ret, retain: true, release: true);
}