bytedesk-flutter/bytedesk_kefu/lib/blocs/friend_bloc/friend_state.dart

61 lines
1.2 KiB

import 'package:bytedesk_kefu/model/friend.dart';
import 'package:equatable/equatable.dart';
abstract class FriendState extends Equatable {
const FriendState();
@override
List<Object> get props => [];
}
/// UnInitialized
class UnFriendState extends FriendState {
UnFriendState();
@override
String toString() => 'UnFriendState';
}
/// Initialized
class FriendLoading extends FriendState {
FriendLoading() : super();
@override
String toString() => 'FriendLoading';
}
class FriendUpdateSuccess extends FriendState {
FriendUpdateSuccess() : super();
@override
String toString() => 'FriendUpdateSuccess';
}
class FriendCreateSuccess extends FriendState {
final Friend? friend;
FriendCreateSuccess({this.friend});
@override
String toString() => 'FriendCreateSuccess';
}
class FriendLoadSuccess extends FriendState {
final List<Friend> friendList;
FriendLoadSuccess(this.friendList);
@override
List<Object> get props => [friendList];
@override
String toString() => 'FriendLoadSuccess { FriendList: ${friendList.length} }';
}
class ErrorFriendState extends FriendState {
final String errorMessage;
ErrorFriendState(this.errorMessage);
@override
String toString() => 'ErrorFriendState';
}