8 lines
199 B
Dart
Raw Normal View History

2025-11-04 14:58:51 +07:00
part of 'printer_bloc.dart';
@freezed
class PrinterState with _$PrinterState {
factory PrinterState({@Default(0) int index}) = _PrinterState;
factory PrinterState.initial() => PrinterState();
}