364 lines
10 KiB
Dart
364 lines
10 KiB
Dart
// coverage:ignore-file
|
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
// ignore_for_file: type=lint
|
|
// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark
|
|
|
|
part of 'printer_bloc.dart';
|
|
|
|
// **************************************************************************
|
|
// FreezedGenerator
|
|
// **************************************************************************
|
|
|
|
T _$identity<T>(T value) => value;
|
|
|
|
final _privateConstructorUsedError = UnsupportedError(
|
|
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models',
|
|
);
|
|
|
|
/// @nodoc
|
|
mixin _$PrinterEvent {
|
|
int get index => throw _privateConstructorUsedError;
|
|
@optionalTypeArgs
|
|
TResult when<TResult extends Object?>({
|
|
required TResult Function(int index) indexChanged,
|
|
}) => throw _privateConstructorUsedError;
|
|
@optionalTypeArgs
|
|
TResult? whenOrNull<TResult extends Object?>({
|
|
TResult? Function(int index)? indexChanged,
|
|
}) => throw _privateConstructorUsedError;
|
|
@optionalTypeArgs
|
|
TResult maybeWhen<TResult extends Object?>({
|
|
TResult Function(int index)? indexChanged,
|
|
required TResult orElse(),
|
|
}) => throw _privateConstructorUsedError;
|
|
@optionalTypeArgs
|
|
TResult map<TResult extends Object?>({
|
|
required TResult Function(_IndexChanged value) indexChanged,
|
|
}) => throw _privateConstructorUsedError;
|
|
@optionalTypeArgs
|
|
TResult? mapOrNull<TResult extends Object?>({
|
|
TResult? Function(_IndexChanged value)? indexChanged,
|
|
}) => throw _privateConstructorUsedError;
|
|
@optionalTypeArgs
|
|
TResult maybeMap<TResult extends Object?>({
|
|
TResult Function(_IndexChanged value)? indexChanged,
|
|
required TResult orElse(),
|
|
}) => throw _privateConstructorUsedError;
|
|
|
|
/// Create a copy of PrinterEvent
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
$PrinterEventCopyWith<PrinterEvent> get copyWith =>
|
|
throw _privateConstructorUsedError;
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class $PrinterEventCopyWith<$Res> {
|
|
factory $PrinterEventCopyWith(
|
|
PrinterEvent value,
|
|
$Res Function(PrinterEvent) then,
|
|
) = _$PrinterEventCopyWithImpl<$Res, PrinterEvent>;
|
|
@useResult
|
|
$Res call({int index});
|
|
}
|
|
|
|
/// @nodoc
|
|
class _$PrinterEventCopyWithImpl<$Res, $Val extends PrinterEvent>
|
|
implements $PrinterEventCopyWith<$Res> {
|
|
_$PrinterEventCopyWithImpl(this._value, this._then);
|
|
|
|
// ignore: unused_field
|
|
final $Val _value;
|
|
// ignore: unused_field
|
|
final $Res Function($Val) _then;
|
|
|
|
/// Create a copy of PrinterEvent
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({Object? index = null}) {
|
|
return _then(
|
|
_value.copyWith(
|
|
index: null == index
|
|
? _value.index
|
|
: index // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
)
|
|
as $Val,
|
|
);
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class _$$IndexChangedImplCopyWith<$Res>
|
|
implements $PrinterEventCopyWith<$Res> {
|
|
factory _$$IndexChangedImplCopyWith(
|
|
_$IndexChangedImpl value,
|
|
$Res Function(_$IndexChangedImpl) then,
|
|
) = __$$IndexChangedImplCopyWithImpl<$Res>;
|
|
@override
|
|
@useResult
|
|
$Res call({int index});
|
|
}
|
|
|
|
/// @nodoc
|
|
class __$$IndexChangedImplCopyWithImpl<$Res>
|
|
extends _$PrinterEventCopyWithImpl<$Res, _$IndexChangedImpl>
|
|
implements _$$IndexChangedImplCopyWith<$Res> {
|
|
__$$IndexChangedImplCopyWithImpl(
|
|
_$IndexChangedImpl _value,
|
|
$Res Function(_$IndexChangedImpl) _then,
|
|
) : super(_value, _then);
|
|
|
|
/// Create a copy of PrinterEvent
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({Object? index = null}) {
|
|
return _then(
|
|
_$IndexChangedImpl(
|
|
null == index
|
|
? _value.index
|
|
: index // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
|
|
class _$IndexChangedImpl implements _IndexChanged {
|
|
const _$IndexChangedImpl(this.index);
|
|
|
|
@override
|
|
final int index;
|
|
|
|
@override
|
|
String toString() {
|
|
return 'PrinterEvent.indexChanged(index: $index)';
|
|
}
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
return identical(this, other) ||
|
|
(other.runtimeType == runtimeType &&
|
|
other is _$IndexChangedImpl &&
|
|
(identical(other.index, index) || other.index == index));
|
|
}
|
|
|
|
@override
|
|
int get hashCode => Object.hash(runtimeType, index);
|
|
|
|
/// Create a copy of PrinterEvent
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
@override
|
|
@pragma('vm:prefer-inline')
|
|
_$$IndexChangedImplCopyWith<_$IndexChangedImpl> get copyWith =>
|
|
__$$IndexChangedImplCopyWithImpl<_$IndexChangedImpl>(this, _$identity);
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult when<TResult extends Object?>({
|
|
required TResult Function(int index) indexChanged,
|
|
}) {
|
|
return indexChanged(index);
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult? whenOrNull<TResult extends Object?>({
|
|
TResult? Function(int index)? indexChanged,
|
|
}) {
|
|
return indexChanged?.call(index);
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult maybeWhen<TResult extends Object?>({
|
|
TResult Function(int index)? indexChanged,
|
|
required TResult orElse(),
|
|
}) {
|
|
if (indexChanged != null) {
|
|
return indexChanged(index);
|
|
}
|
|
return orElse();
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult map<TResult extends Object?>({
|
|
required TResult Function(_IndexChanged value) indexChanged,
|
|
}) {
|
|
return indexChanged(this);
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult? mapOrNull<TResult extends Object?>({
|
|
TResult? Function(_IndexChanged value)? indexChanged,
|
|
}) {
|
|
return indexChanged?.call(this);
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult maybeMap<TResult extends Object?>({
|
|
TResult Function(_IndexChanged value)? indexChanged,
|
|
required TResult orElse(),
|
|
}) {
|
|
if (indexChanged != null) {
|
|
return indexChanged(this);
|
|
}
|
|
return orElse();
|
|
}
|
|
}
|
|
|
|
abstract class _IndexChanged implements PrinterEvent {
|
|
const factory _IndexChanged(final int index) = _$IndexChangedImpl;
|
|
|
|
@override
|
|
int get index;
|
|
|
|
/// Create a copy of PrinterEvent
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@override
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
_$$IndexChangedImplCopyWith<_$IndexChangedImpl> get copyWith =>
|
|
throw _privateConstructorUsedError;
|
|
}
|
|
|
|
/// @nodoc
|
|
mixin _$PrinterState {
|
|
int get index => throw _privateConstructorUsedError;
|
|
|
|
/// Create a copy of PrinterState
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
$PrinterStateCopyWith<PrinterState> get copyWith =>
|
|
throw _privateConstructorUsedError;
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class $PrinterStateCopyWith<$Res> {
|
|
factory $PrinterStateCopyWith(
|
|
PrinterState value,
|
|
$Res Function(PrinterState) then,
|
|
) = _$PrinterStateCopyWithImpl<$Res, PrinterState>;
|
|
@useResult
|
|
$Res call({int index});
|
|
}
|
|
|
|
/// @nodoc
|
|
class _$PrinterStateCopyWithImpl<$Res, $Val extends PrinterState>
|
|
implements $PrinterStateCopyWith<$Res> {
|
|
_$PrinterStateCopyWithImpl(this._value, this._then);
|
|
|
|
// ignore: unused_field
|
|
final $Val _value;
|
|
// ignore: unused_field
|
|
final $Res Function($Val) _then;
|
|
|
|
/// Create a copy of PrinterState
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({Object? index = null}) {
|
|
return _then(
|
|
_value.copyWith(
|
|
index: null == index
|
|
? _value.index
|
|
: index // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
)
|
|
as $Val,
|
|
);
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class _$$PrinterStateImplCopyWith<$Res>
|
|
implements $PrinterStateCopyWith<$Res> {
|
|
factory _$$PrinterStateImplCopyWith(
|
|
_$PrinterStateImpl value,
|
|
$Res Function(_$PrinterStateImpl) then,
|
|
) = __$$PrinterStateImplCopyWithImpl<$Res>;
|
|
@override
|
|
@useResult
|
|
$Res call({int index});
|
|
}
|
|
|
|
/// @nodoc
|
|
class __$$PrinterStateImplCopyWithImpl<$Res>
|
|
extends _$PrinterStateCopyWithImpl<$Res, _$PrinterStateImpl>
|
|
implements _$$PrinterStateImplCopyWith<$Res> {
|
|
__$$PrinterStateImplCopyWithImpl(
|
|
_$PrinterStateImpl _value,
|
|
$Res Function(_$PrinterStateImpl) _then,
|
|
) : super(_value, _then);
|
|
|
|
/// Create a copy of PrinterState
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({Object? index = null}) {
|
|
return _then(
|
|
_$PrinterStateImpl(
|
|
index: null == index
|
|
? _value.index
|
|
: index // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
|
|
class _$PrinterStateImpl implements _PrinterState {
|
|
_$PrinterStateImpl({this.index = 0});
|
|
|
|
@override
|
|
@JsonKey()
|
|
final int index;
|
|
|
|
@override
|
|
String toString() {
|
|
return 'PrinterState(index: $index)';
|
|
}
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
return identical(this, other) ||
|
|
(other.runtimeType == runtimeType &&
|
|
other is _$PrinterStateImpl &&
|
|
(identical(other.index, index) || other.index == index));
|
|
}
|
|
|
|
@override
|
|
int get hashCode => Object.hash(runtimeType, index);
|
|
|
|
/// Create a copy of PrinterState
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
@override
|
|
@pragma('vm:prefer-inline')
|
|
_$$PrinterStateImplCopyWith<_$PrinterStateImpl> get copyWith =>
|
|
__$$PrinterStateImplCopyWithImpl<_$PrinterStateImpl>(this, _$identity);
|
|
}
|
|
|
|
abstract class _PrinterState implements PrinterState {
|
|
factory _PrinterState({final int index}) = _$PrinterStateImpl;
|
|
|
|
@override
|
|
int get index;
|
|
|
|
/// Create a copy of PrinterState
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@override
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
_$$PrinterStateImplCopyWith<_$PrinterStateImpl> get copyWith =>
|
|
throw _privateConstructorUsedError;
|
|
}
|