setOnInvokeCallback static method

Future<void> setOnInvokeCallback(
  1. OnSDKInvokeCallback callback
)

Sets a block of code to be executed just before the SDK's UI is presented. This block is executed on the UI thread. Could be used for performing any UI changes before the SDK's UI is shown. callback A callback that gets executed before invoking the SDK

Implementation

static Future<void> setOnInvokeCallback(
  OnSDKInvokeCallback callback,
) async {
  _onInvokeCallback = callback;
  return _host.bindOnInvokeCallback();
}