passo_mobile_app/lib/bloc/profile/profile_event.dart

24 lines
449 B
Dart

part of 'profile_bloc.dart';
abstract class ProfileEvent extends Equatable {
const ProfileEvent();
@override
List<Object> get props => [];
}
class LoadProfile extends ProfileEvent{
final String token;
final int userID;
const LoadProfile({required this.token, required this.userID});
@override
List<Object> get props => [token,userID];
}
class LoadProfileInformation extends ProfileEvent{
@override
List<Object> get props => [];
}