Files
friflex_flutter_starter/lib/features/profile/domain/bloc/profile_event.dart
2025-05-28 16:39:56 +03:00

17 lines
330 B
Dart

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