12 lines
365 B
Dart
Raw Normal View History

2025-07-30 22:38:44 +07:00
part of 'create_table_bloc.dart';
@freezed
class CreateTableState with _$CreateTableState {
const factory CreateTableState.initial() = _Initial;
// loading
const factory CreateTableState.loading() = _Loading;
// success
const factory CreateTableState.success(String message) = _Success;
2025-08-03 23:33:00 +07:00
const factory CreateTableState.error(String message) = _Error;
2025-07-30 22:38:44 +07:00
}