8 lines
194 B
Dart
Raw Normal View History

2025-07-30 22:38:44 +07:00
part of 'get_table_bloc.dart';
@freezed
class GetTableEvent with _$GetTableEvent {
const factory GetTableEvent.started() = _Started;
const factory GetTableEvent.getTables() = _GetTables;
}