mirror of
https://github.com/smmarty/friflex_flutter_starter.git
synced 2025-12-22 01:20:46 +00:00
18 lines
331 B
Dart
18 lines
331 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];
|
|
}
|