9 lines
286 B
Dart
Raw Normal View History

2025-07-30 22:38:44 +07:00
part of 'generate_table_bloc.dart';
@freezed
class GenerateTableState with _$GenerateTableState {
const factory GenerateTableState.initial() = _Initial;
const factory GenerateTableState.loading() = _Loading;
const factory GenerateTableState.success(String message) = _Success;
}