10 lines
250 B
Dart
Raw Normal View History

2025-07-30 22:38:44 +07:00
part of 'create_printer_bloc.dart';
@freezed
class CreatePrinterEvent with _$CreatePrinterEvent {
const factory CreatePrinterEvent.started() = _Started;
const factory CreatePrinterEvent.createPrinter(PrintModel print) =
_CreatePrinter;
}