performSync<T> method

  1. @override
T performSync<T>(
  1. SEL selector, {
  2. List? args,
  3. bool decodeRetVal = true,
})
override

Sends a specified message to the receiver and returns the result of the message.

The message will consist of a selector and zero or more args. Return value will be converted to Dart types when decodeRetVal is true.

Implementation

@override
T performSync<T>(SEL selector, {List? args, bool decodeRetVal = true}) {
  return msgSendSync<T>(pointer, selector,
      args: args, decodeRetVal: decodeRetVal);
}