part of 'customer_change_bloc.dart'; @immutable abstract class CustomerChangeEvent extends Equatable { const CustomerChangeEvent(); @override List get props => []; } class CustomerGoalChange extends CustomerChangeEvent { final String goal; const CustomerGoalChange({this.goal}); @override List get props => [goal]; } class CustomerFitnessChange extends CustomerChangeEvent { final String fitness; const CustomerFitnessChange({this.fitness}); @override List get props => [fitness]; } class CustomerBodyTypeChange extends CustomerChangeEvent { final String bodyType; const CustomerBodyTypeChange({this.bodyType}); @override List get props => [bodyType]; } class CustomerBirthYearChange extends CustomerChangeEvent { final int year; const CustomerBirthYearChange({this.year}); @override List get props => [year]; } class CustomerWeightChange extends CustomerChangeEvent { final int weight; const CustomerWeightChange({this.weight}); @override List get props => [weight]; } class CustomerHeightChange extends CustomerChangeEvent { final int height; const CustomerHeightChange({this.height}); @override List get props => [height]; } class CustomerGenderChange extends CustomerChangeEvent { final int gender; const CustomerGenderChange({this.gender}); @override List get props => [gender]; } class CustomerEmailChange extends CustomerChangeEvent { final String email; const CustomerEmailChange({this.email}); @override List get props => [email]; } class CustomerFirstNameChange extends CustomerChangeEvent { final String firstName; const CustomerFirstNameChange({this.firstName}); @override List get props => [firstName]; } class CustomerNameChange extends CustomerChangeEvent { final String name; const CustomerNameChange({this.name}); @override List get props => [name]; } class CustomerPasswordChange extends CustomerChangeEvent { final String password; const CustomerPasswordChange({this.password}); @override List get props => [password]; } class CustomerChangePasswordObscure extends CustomerChangeEvent { const CustomerChangePasswordObscure(); } class CustomerLoad extends CustomerChangeEvent { const CustomerLoad(); } class CustomerSave extends CustomerChangeEvent { const CustomerSave(); }