22 lines
440 B
Dart
22 lines
440 B
Dart
part of 'profile_bloc.dart';
|
|
|
|
abstract class ProfileState extends Equatable {
|
|
const ProfileState();
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
}
|
|
|
|
class UpdateUserInfoInitial extends ProfileState {}
|
|
|
|
class UpdateUserInfoFailure extends ProfileState {}
|
|
|
|
class UpdateUserInfoLoading extends ProfileState {}
|
|
|
|
class UpdateUserInfoSuccess extends ProfileState {
|
|
const UpdateUserInfoSuccess();
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
}
|