TKK_E32232340/atmospheric_conditions/blocs/atmospheric_conditions_even...

11 lines
271 B
Dart

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