newSeparateInstance static method
Creates separate instance of event bus
Useful when you need eventbus specificaly for one task, for example file upload
Implementation
// ignore: prefer_constructors_over_static_methods
static EventBus newSeparateInstance() {
return EventBus._internal();
}