part of 'location_bloc.dart'; abstract class LocationState extends Equatable { const LocationState(); @override List get props => []; } class LocationLoading extends LocationState {} class LocationLoaded extends LocationState { LocationLoaded(this.bldgloc); final BldgLoc bldgloc; @override List get props => [bldgloc]; } class LocationErrorState extends LocationState { LocationErrorState(this.error); final String error; @override List get props => [error]; }