InternetConnectionBloc constructor

InternetConnectionBloc()

Implementation

InternetConnectionBloc() : super(InternetConnectionState()) {
  on<_Started>(_onStarted);
  on<_ConnectionChanged>(_onChanged);
}