9 lines
253 B
Dart
Raw Normal View History

2025-07-30 22:38:44 +07:00
part of 'create_table_bloc.dart';
@freezed
class CreateTableEvent with _$CreateTableEvent {
const factory CreateTableEvent.started() = _Started;
const factory CreateTableEvent.createTable(
String tableName, Offset position) = _CreateTable;
}