mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
245 lines
6.7 KiB
Dart
245 lines
6.7 KiB
Dart
// 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 'auth_state.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 _$AuthStateTearOff {
|
|
const _$AuthStateTearOff();
|
|
|
|
Authenticated authenticated() {
|
|
return const Authenticated();
|
|
}
|
|
|
|
Unauthenticated unauthenticated() {
|
|
return const Unauthenticated();
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
const $AuthState = _$AuthStateTearOff();
|
|
|
|
/// @nodoc
|
|
mixin _$AuthState {
|
|
@optionalTypeArgs
|
|
TResult when<TResult extends Object?>({
|
|
required TResult Function() authenticated,
|
|
required TResult Function() unauthenticated,
|
|
}) =>
|
|
throw _privateConstructorUsedError;
|
|
@optionalTypeArgs
|
|
TResult maybeWhen<TResult extends Object?>({
|
|
TResult Function()? authenticated,
|
|
TResult Function()? unauthenticated,
|
|
required TResult orElse(),
|
|
}) =>
|
|
throw _privateConstructorUsedError;
|
|
@optionalTypeArgs
|
|
TResult map<TResult extends Object?>({
|
|
required TResult Function(Authenticated value) authenticated,
|
|
required TResult Function(Unauthenticated value) unauthenticated,
|
|
}) =>
|
|
throw _privateConstructorUsedError;
|
|
@optionalTypeArgs
|
|
TResult maybeMap<TResult extends Object?>({
|
|
TResult Function(Authenticated value)? authenticated,
|
|
TResult Function(Unauthenticated value)? unauthenticated,
|
|
required TResult orElse(),
|
|
}) =>
|
|
throw _privateConstructorUsedError;
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class $AuthStateCopyWith<$Res> {
|
|
factory $AuthStateCopyWith(AuthState value, $Res Function(AuthState) then) =
|
|
_$AuthStateCopyWithImpl<$Res>;
|
|
}
|
|
|
|
/// @nodoc
|
|
class _$AuthStateCopyWithImpl<$Res> implements $AuthStateCopyWith<$Res> {
|
|
_$AuthStateCopyWithImpl(this._value, this._then);
|
|
|
|
final AuthState _value;
|
|
// ignore: unused_field
|
|
final $Res Function(AuthState) _then;
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class $AuthenticatedCopyWith<$Res> {
|
|
factory $AuthenticatedCopyWith(
|
|
Authenticated value, $Res Function(Authenticated) then) =
|
|
_$AuthenticatedCopyWithImpl<$Res>;
|
|
}
|
|
|
|
/// @nodoc
|
|
class _$AuthenticatedCopyWithImpl<$Res> extends _$AuthStateCopyWithImpl<$Res>
|
|
implements $AuthenticatedCopyWith<$Res> {
|
|
_$AuthenticatedCopyWithImpl(
|
|
Authenticated _value, $Res Function(Authenticated) _then)
|
|
: super(_value, (v) => _then(v as Authenticated));
|
|
|
|
@override
|
|
Authenticated get _value => super._value as Authenticated;
|
|
}
|
|
|
|
/// @nodoc
|
|
|
|
class _$Authenticated implements Authenticated {
|
|
const _$Authenticated();
|
|
|
|
@override
|
|
String toString() {
|
|
return 'AuthState.authenticated()';
|
|
}
|
|
|
|
@override
|
|
bool operator ==(dynamic other) {
|
|
return identical(this, other) || (other is Authenticated);
|
|
}
|
|
|
|
@override
|
|
int get hashCode => runtimeType.hashCode;
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult when<TResult extends Object?>({
|
|
required TResult Function() authenticated,
|
|
required TResult Function() unauthenticated,
|
|
}) {
|
|
return authenticated();
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult maybeWhen<TResult extends Object?>({
|
|
TResult Function()? authenticated,
|
|
TResult Function()? unauthenticated,
|
|
required TResult orElse(),
|
|
}) {
|
|
if (authenticated != null) {
|
|
return authenticated();
|
|
}
|
|
return orElse();
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult map<TResult extends Object?>({
|
|
required TResult Function(Authenticated value) authenticated,
|
|
required TResult Function(Unauthenticated value) unauthenticated,
|
|
}) {
|
|
return authenticated(this);
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult maybeMap<TResult extends Object?>({
|
|
TResult Function(Authenticated value)? authenticated,
|
|
TResult Function(Unauthenticated value)? unauthenticated,
|
|
required TResult orElse(),
|
|
}) {
|
|
if (authenticated != null) {
|
|
return authenticated(this);
|
|
}
|
|
return orElse();
|
|
}
|
|
}
|
|
|
|
abstract class Authenticated implements AuthState {
|
|
const factory Authenticated() = _$Authenticated;
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class $UnauthenticatedCopyWith<$Res> {
|
|
factory $UnauthenticatedCopyWith(
|
|
Unauthenticated value, $Res Function(Unauthenticated) then) =
|
|
_$UnauthenticatedCopyWithImpl<$Res>;
|
|
}
|
|
|
|
/// @nodoc
|
|
class _$UnauthenticatedCopyWithImpl<$Res> extends _$AuthStateCopyWithImpl<$Res>
|
|
implements $UnauthenticatedCopyWith<$Res> {
|
|
_$UnauthenticatedCopyWithImpl(
|
|
Unauthenticated _value, $Res Function(Unauthenticated) _then)
|
|
: super(_value, (v) => _then(v as Unauthenticated));
|
|
|
|
@override
|
|
Unauthenticated get _value => super._value as Unauthenticated;
|
|
}
|
|
|
|
/// @nodoc
|
|
|
|
class _$Unauthenticated implements Unauthenticated {
|
|
const _$Unauthenticated();
|
|
|
|
@override
|
|
String toString() {
|
|
return 'AuthState.unauthenticated()';
|
|
}
|
|
|
|
@override
|
|
bool operator ==(dynamic other) {
|
|
return identical(this, other) || (other is Unauthenticated);
|
|
}
|
|
|
|
@override
|
|
int get hashCode => runtimeType.hashCode;
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult when<TResult extends Object?>({
|
|
required TResult Function() authenticated,
|
|
required TResult Function() unauthenticated,
|
|
}) {
|
|
return unauthenticated();
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult maybeWhen<TResult extends Object?>({
|
|
TResult Function()? authenticated,
|
|
TResult Function()? unauthenticated,
|
|
required TResult orElse(),
|
|
}) {
|
|
if (unauthenticated != null) {
|
|
return unauthenticated();
|
|
}
|
|
return orElse();
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult map<TResult extends Object?>({
|
|
required TResult Function(Authenticated value) authenticated,
|
|
required TResult Function(Unauthenticated value) unauthenticated,
|
|
}) {
|
|
return unauthenticated(this);
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult maybeMap<TResult extends Object?>({
|
|
TResult Function(Authenticated value)? authenticated,
|
|
TResult Function(Unauthenticated value)? unauthenticated,
|
|
required TResult orElse(),
|
|
}) {
|
|
if (unauthenticated != null) {
|
|
return unauthenticated(this);
|
|
}
|
|
return orElse();
|
|
}
|
|
}
|
|
|
|
abstract class Unauthenticated implements AuthState {
|
|
const factory Unauthenticated() = _$Unauthenticated;
|
|
}
|