Skip to main content

API

InteractorProducer​

Use InteractorProducer when you need to make calls from Dart to Native.

Declaration
abstract interface class InteractorProducer {
void initialize(InteractorProducerRegistrat registrat);
}
Example
class TestNativeProducer implements InteractorProducer {
final /* Your native bindings */ _bindings;

TestNativeProducer(this._bindings);

late final InteractorMethod testCallNative;


void initialize(InteractorProducerRegistrat registrat) {
testCallNative = registrat.register(/* address from binding */);
}
}

InteractorProducerRegistrat​

Declaration
abstract interface class InteractorProducerRegistrat {
InteractorMethod register(Pointer<NativeFunction<Void Function(Pointer<interactor_message>)>> pointer);
}

InteractorMethod​

Declaration
abstract interface class InteractorMethod {
Future<InteractorCall> call(int target, {FutureOr<void> Function(InteractorCall message)? configurator});
}

References