8 lines
229 B
Dart
Raw Normal View History

2025-07-30 22:38:44 +07:00
part of 'update_table_bloc.dart';
@freezed
class UpdateTableEvent with _$UpdateTableEvent {
const factory UpdateTableEvent.started() = _Started;
const factory UpdateTableEvent.updateTable(TableModel table) = _UpdateTable;
}