123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464 |
- // GENERATED CODE - DO NOT MODIFY BY HAND
- // 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
- part of 'app_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 informations: https://github.com/rrousselGit/freezed#custom-getters-and-methods');
- /// @nodoc
- class _$AppEventTearOff {
- const _$AppEventTearOff();
- _Initial initial() {
- return const _Initial();
- }
- ViewsReceived viewsReceived(Either<List<View>, WorkspaceError> appsOrFail) {
- return ViewsReceived(
- appsOrFail,
- );
- }
- }
- /// @nodoc
- const $AppEvent = _$AppEventTearOff();
- /// @nodoc
- mixin _$AppEvent {
- @optionalTypeArgs
- TResult when<TResult extends Object?>({
- required TResult Function() initial,
- required TResult Function(Either<List<View>, WorkspaceError> appsOrFail)
- viewsReceived,
- }) =>
- throw _privateConstructorUsedError;
- @optionalTypeArgs
- TResult maybeWhen<TResult extends Object?>({
- TResult Function()? initial,
- TResult Function(Either<List<View>, WorkspaceError> appsOrFail)?
- viewsReceived,
- required TResult orElse(),
- }) =>
- throw _privateConstructorUsedError;
- @optionalTypeArgs
- TResult map<TResult extends Object?>({
- required TResult Function(_Initial value) initial,
- required TResult Function(ViewsReceived value) viewsReceived,
- }) =>
- throw _privateConstructorUsedError;
- @optionalTypeArgs
- TResult maybeMap<TResult extends Object?>({
- TResult Function(_Initial value)? initial,
- TResult Function(ViewsReceived value)? viewsReceived,
- required TResult orElse(),
- }) =>
- throw _privateConstructorUsedError;
- }
- /// @nodoc
- abstract class $AppEventCopyWith<$Res> {
- factory $AppEventCopyWith(AppEvent value, $Res Function(AppEvent) then) =
- _$AppEventCopyWithImpl<$Res>;
- }
- /// @nodoc
- class _$AppEventCopyWithImpl<$Res> implements $AppEventCopyWith<$Res> {
- _$AppEventCopyWithImpl(this._value, this._then);
- final AppEvent _value;
- // ignore: unused_field
- final $Res Function(AppEvent) _then;
- }
- /// @nodoc
- abstract class _$InitialCopyWith<$Res> {
- factory _$InitialCopyWith(_Initial value, $Res Function(_Initial) then) =
- __$InitialCopyWithImpl<$Res>;
- }
- /// @nodoc
- class __$InitialCopyWithImpl<$Res> extends _$AppEventCopyWithImpl<$Res>
- implements _$InitialCopyWith<$Res> {
- __$InitialCopyWithImpl(_Initial _value, $Res Function(_Initial) _then)
- : super(_value, (v) => _then(v as _Initial));
- @override
- _Initial get _value => super._value as _Initial;
- }
- /// @nodoc
- class _$_Initial implements _Initial {
- const _$_Initial();
- @override
- String toString() {
- return 'AppEvent.initial()';
- }
- @override
- bool operator ==(dynamic other) {
- return identical(this, other) || (other is _Initial);
- }
- @override
- int get hashCode => runtimeType.hashCode;
- @override
- @optionalTypeArgs
- TResult when<TResult extends Object?>({
- required TResult Function() initial,
- required TResult Function(Either<List<View>, WorkspaceError> appsOrFail)
- viewsReceived,
- }) {
- return initial();
- }
- @override
- @optionalTypeArgs
- TResult maybeWhen<TResult extends Object?>({
- TResult Function()? initial,
- TResult Function(Either<List<View>, WorkspaceError> appsOrFail)?
- viewsReceived,
- required TResult orElse(),
- }) {
- if (initial != null) {
- return initial();
- }
- return orElse();
- }
- @override
- @optionalTypeArgs
- TResult map<TResult extends Object?>({
- required TResult Function(_Initial value) initial,
- required TResult Function(ViewsReceived value) viewsReceived,
- }) {
- return initial(this);
- }
- @override
- @optionalTypeArgs
- TResult maybeMap<TResult extends Object?>({
- TResult Function(_Initial value)? initial,
- TResult Function(ViewsReceived value)? viewsReceived,
- required TResult orElse(),
- }) {
- if (initial != null) {
- return initial(this);
- }
- return orElse();
- }
- }
- abstract class _Initial implements AppEvent {
- const factory _Initial() = _$_Initial;
- }
- /// @nodoc
- abstract class $ViewsReceivedCopyWith<$Res> {
- factory $ViewsReceivedCopyWith(
- ViewsReceived value, $Res Function(ViewsReceived) then) =
- _$ViewsReceivedCopyWithImpl<$Res>;
- $Res call({Either<List<View>, WorkspaceError> appsOrFail});
- }
- /// @nodoc
- class _$ViewsReceivedCopyWithImpl<$Res> extends _$AppEventCopyWithImpl<$Res>
- implements $ViewsReceivedCopyWith<$Res> {
- _$ViewsReceivedCopyWithImpl(
- ViewsReceived _value, $Res Function(ViewsReceived) _then)
- : super(_value, (v) => _then(v as ViewsReceived));
- @override
- ViewsReceived get _value => super._value as ViewsReceived;
- @override
- $Res call({
- Object? appsOrFail = freezed,
- }) {
- return _then(ViewsReceived(
- appsOrFail == freezed
- ? _value.appsOrFail
- : appsOrFail // ignore: cast_nullable_to_non_nullable
- as Either<List<View>, WorkspaceError>,
- ));
- }
- }
- /// @nodoc
- class _$ViewsReceived implements ViewsReceived {
- const _$ViewsReceived(this.appsOrFail);
- @override
- final Either<List<View>, WorkspaceError> appsOrFail;
- @override
- String toString() {
- return 'AppEvent.viewsReceived(appsOrFail: $appsOrFail)';
- }
- @override
- bool operator ==(dynamic other) {
- return identical(this, other) ||
- (other is ViewsReceived &&
- (identical(other.appsOrFail, appsOrFail) ||
- const DeepCollectionEquality()
- .equals(other.appsOrFail, appsOrFail)));
- }
- @override
- int get hashCode =>
- runtimeType.hashCode ^ const DeepCollectionEquality().hash(appsOrFail);
- @JsonKey(ignore: true)
- @override
- $ViewsReceivedCopyWith<ViewsReceived> get copyWith =>
- _$ViewsReceivedCopyWithImpl<ViewsReceived>(this, _$identity);
- @override
- @optionalTypeArgs
- TResult when<TResult extends Object?>({
- required TResult Function() initial,
- required TResult Function(Either<List<View>, WorkspaceError> appsOrFail)
- viewsReceived,
- }) {
- return viewsReceived(appsOrFail);
- }
- @override
- @optionalTypeArgs
- TResult maybeWhen<TResult extends Object?>({
- TResult Function()? initial,
- TResult Function(Either<List<View>, WorkspaceError> appsOrFail)?
- viewsReceived,
- required TResult orElse(),
- }) {
- if (viewsReceived != null) {
- return viewsReceived(appsOrFail);
- }
- return orElse();
- }
- @override
- @optionalTypeArgs
- TResult map<TResult extends Object?>({
- required TResult Function(_Initial value) initial,
- required TResult Function(ViewsReceived value) viewsReceived,
- }) {
- return viewsReceived(this);
- }
- @override
- @optionalTypeArgs
- TResult maybeMap<TResult extends Object?>({
- TResult Function(_Initial value)? initial,
- TResult Function(ViewsReceived value)? viewsReceived,
- required TResult orElse(),
- }) {
- if (viewsReceived != null) {
- return viewsReceived(this);
- }
- return orElse();
- }
- }
- abstract class ViewsReceived implements AppEvent {
- const factory ViewsReceived(Either<List<View>, WorkspaceError> appsOrFail) =
- _$ViewsReceived;
- Either<List<View>, WorkspaceError> get appsOrFail =>
- throw _privateConstructorUsedError;
- @JsonKey(ignore: true)
- $ViewsReceivedCopyWith<ViewsReceived> get copyWith =>
- throw _privateConstructorUsedError;
- }
- /// @nodoc
- class _$AppStateTearOff {
- const _$AppStateTearOff();
- _AppState call(
- {required bool isLoading,
- required Option<List<App>> apps,
- required Either<Unit, WorkspaceError> successOrFailure}) {
- return _AppState(
- isLoading: isLoading,
- apps: apps,
- successOrFailure: successOrFailure,
- );
- }
- }
- /// @nodoc
- const $AppState = _$AppStateTearOff();
- /// @nodoc
- mixin _$AppState {
- bool get isLoading => throw _privateConstructorUsedError;
- Option<List<App>> get apps => throw _privateConstructorUsedError;
- Either<Unit, WorkspaceError> get successOrFailure =>
- throw _privateConstructorUsedError;
- @JsonKey(ignore: true)
- $AppStateCopyWith<AppState> get copyWith =>
- throw _privateConstructorUsedError;
- }
- /// @nodoc
- abstract class $AppStateCopyWith<$Res> {
- factory $AppStateCopyWith(AppState value, $Res Function(AppState) then) =
- _$AppStateCopyWithImpl<$Res>;
- $Res call(
- {bool isLoading,
- Option<List<App>> apps,
- Either<Unit, WorkspaceError> successOrFailure});
- }
- /// @nodoc
- class _$AppStateCopyWithImpl<$Res> implements $AppStateCopyWith<$Res> {
- _$AppStateCopyWithImpl(this._value, this._then);
- final AppState _value;
- // ignore: unused_field
- final $Res Function(AppState) _then;
- @override
- $Res call({
- Object? isLoading = freezed,
- Object? apps = freezed,
- Object? successOrFailure = freezed,
- }) {
- return _then(_value.copyWith(
- isLoading: isLoading == freezed
- ? _value.isLoading
- : isLoading // ignore: cast_nullable_to_non_nullable
- as bool,
- apps: apps == freezed
- ? _value.apps
- : apps // ignore: cast_nullable_to_non_nullable
- as Option<List<App>>,
- successOrFailure: successOrFailure == freezed
- ? _value.successOrFailure
- : successOrFailure // ignore: cast_nullable_to_non_nullable
- as Either<Unit, WorkspaceError>,
- ));
- }
- }
- /// @nodoc
- abstract class _$AppStateCopyWith<$Res> implements $AppStateCopyWith<$Res> {
- factory _$AppStateCopyWith(_AppState value, $Res Function(_AppState) then) =
- __$AppStateCopyWithImpl<$Res>;
- @override
- $Res call(
- {bool isLoading,
- Option<List<App>> apps,
- Either<Unit, WorkspaceError> successOrFailure});
- }
- /// @nodoc
- class __$AppStateCopyWithImpl<$Res> extends _$AppStateCopyWithImpl<$Res>
- implements _$AppStateCopyWith<$Res> {
- __$AppStateCopyWithImpl(_AppState _value, $Res Function(_AppState) _then)
- : super(_value, (v) => _then(v as _AppState));
- @override
- _AppState get _value => super._value as _AppState;
- @override
- $Res call({
- Object? isLoading = freezed,
- Object? apps = freezed,
- Object? successOrFailure = freezed,
- }) {
- return _then(_AppState(
- isLoading: isLoading == freezed
- ? _value.isLoading
- : isLoading // ignore: cast_nullable_to_non_nullable
- as bool,
- apps: apps == freezed
- ? _value.apps
- : apps // ignore: cast_nullable_to_non_nullable
- as Option<List<App>>,
- successOrFailure: successOrFailure == freezed
- ? _value.successOrFailure
- : successOrFailure // ignore: cast_nullable_to_non_nullable
- as Either<Unit, WorkspaceError>,
- ));
- }
- }
- /// @nodoc
- class _$_AppState implements _AppState {
- const _$_AppState(
- {required this.isLoading,
- required this.apps,
- required this.successOrFailure});
- @override
- final bool isLoading;
- @override
- final Option<List<App>> apps;
- @override
- final Either<Unit, WorkspaceError> successOrFailure;
- @override
- String toString() {
- return 'AppState(isLoading: $isLoading, apps: $apps, successOrFailure: $successOrFailure)';
- }
- @override
- bool operator ==(dynamic other) {
- return identical(this, other) ||
- (other is _AppState &&
- (identical(other.isLoading, isLoading) ||
- const DeepCollectionEquality()
- .equals(other.isLoading, isLoading)) &&
- (identical(other.apps, apps) ||
- const DeepCollectionEquality().equals(other.apps, apps)) &&
- (identical(other.successOrFailure, successOrFailure) ||
- const DeepCollectionEquality()
- .equals(other.successOrFailure, successOrFailure)));
- }
- @override
- int get hashCode =>
- runtimeType.hashCode ^
- const DeepCollectionEquality().hash(isLoading) ^
- const DeepCollectionEquality().hash(apps) ^
- const DeepCollectionEquality().hash(successOrFailure);
- @JsonKey(ignore: true)
- @override
- _$AppStateCopyWith<_AppState> get copyWith =>
- __$AppStateCopyWithImpl<_AppState>(this, _$identity);
- }
- abstract class _AppState implements AppState {
- const factory _AppState(
- {required bool isLoading,
- required Option<List<App>> apps,
- required Either<Unit, WorkspaceError> successOrFailure}) = _$_AppState;
- @override
- bool get isLoading => throw _privateConstructorUsedError;
- @override
- Option<List<App>> get apps => throw _privateConstructorUsedError;
- @override
- Either<Unit, WorkspaceError> get successOrFailure =>
- throw _privateConstructorUsedError;
- @override
- @JsonKey(ignore: true)
- _$AppStateCopyWith<_AppState> get copyWith =>
- throw _privateConstructorUsedError;
- }
|