pasteAndMatchStyle method

void pasteAndMatchStyle(
  1. ObjCObjectBase? sender
)

pasteAndMatchStyle:

Implementation

void pasteAndMatchStyle(objc.ObjCObjectBase? sender) {
  objc.checkOsVersionInternal('UIResponder.pasteAndMatchStyle:', iOS: (false, (15, 0, 0)));
  if (!objc.respondsToSelector(this.ref.pointer, _sel_pasteAndMatchStyle_)) {
    throw objc.UnimplementedOptionalMethodException('UIResponder', 'pasteAndMatchStyle:');
  }
  _objc_msgSend_xtuoz7(this.ref.pointer, _sel_pasteAndMatchStyle_, sender?.ref.pointer ?? ffi.nullptr);
}