ObjCProtocolMethod<T extends Function> constructor

ObjCProtocolMethod<T extends Function>(
  1. Pointer<ObjCProtocolImpl> _proto,
  2. Pointer<ObjCSelector> _sel,
  3. Pointer<Void> _trampoline,
  4. Pointer<Char>? _signature,
  5. ObjCBlockBase _createBlock(
    1. T
    ),
)

Only for use by FFIgen bindings.

Implementation

ObjCProtocolMethod(
  this._proto,
  this._sel,
  this._trampoline,
  this._signature,
  this._createBlock,
);