Files
moxxy/lib/ui/bloc/server_info_state.dart

14 lines
410 B
Dart

part of 'server_info_bloc.dart';
@freezed
class ServerInfoState with _$ServerInfoState {
factory ServerInfoState({
@Default(true) bool working,
@Default(false) bool streamManagementSupported,
@Default(false) bool userBlockingSupported,
@Default(false) bool httpFileUploadSupported,
@Default(false) bool csiSupported,
@Default(false) bool carbonsSupported,
}) = _ServerInfoState;
}