part of 'profile_bloc.dart'; sealed class ProfileEvent extends Equatable { const ProfileEvent(); @override List get props => []; } final class ProfileFetchProfileEvent extends ProfileEvent { final String id; const ProfileFetchProfileEvent({required this.id}); @override List get props => [id]; }