onComplyCubeEvents property
Can only be listened once. If have more than one subscription, only the last subscription can receive events.
Implementation
@override
Stream<ComplyCubeEvent> get onComplyCubeEvents => eventChannel
.receiveBroadcastStream()
.map((event) => ComplyCubeEvent.values
.firstWhere((e) => e.toString().contains(event)));