selfprivacy.org.app/lib/logic/cubit/support_system/support_system_state.dart

13 lines
234 B
Dart

part of 'support_system_cubit.dart';
class SupportSystemState extends Equatable {
const SupportSystemState(
this.currentArticle,
);
final String currentArticle;
@override
List<Object> get props => [currentArticle];
}