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
- See InteractorCall
- See interactor_message