8 lines
199 B
Dart
8 lines
199 B
Dart
|
|
part of 'printer_bloc.dart';
|
||
|
|
|
||
|
|
@freezed
|
||
|
|
class PrinterState with _$PrinterState {
|
||
|
|
factory PrinterState({@Default(0) int index}) = _PrinterState;
|
||
|
|
factory PrinterState.initial() => PrinterState();
|
||
|
|
}
|