InteractorOf<BackendType extends Backend> constructor

InteractorOf<BackendType extends Backend>(
  1. Backend _backend
)

InteractorOf<Backend> - is a facade to communicate between Backend's Only InteractorOf have access to private Backend's method, which can be used to send data to another Backend

How to use: See SecondBackInteractor in test/next/data_bus/second_back_interactor.dart

Implementation

InteractorOf(this._backend) : assert('$BackendType' != 'Backend');