Aditya Siregar 73320561b0 first commit
2025-07-30 22:38:44 +07:00

10 lines
250 B
Dart

part of 'create_printer_bloc.dart';
@freezed
class CreatePrinterEvent with _$CreatePrinterEvent {
const factory CreatePrinterEvent.started() = _Started;
const factory CreatePrinterEvent.createPrinter(PrintModel print) =
_CreatePrinter;
}