part of 'atmospheric_conditions_bloc.dart'; abstract class AtmosphericConditionsEvent extends Equatable { const AtmosphericConditionsEvent(); @override List get props => []; } class WatchAtmosphericConditionsStarted extends AtmosphericConditionsEvent {}