735 lines
22 KiB
Dart
735 lines
22 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 'login_form_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 _$LoginFormEvent {
|
|
@optionalTypeArgs
|
|
TResult when<TResult extends Object?>({
|
|
required TResult Function(String email) emailChanged,
|
|
required TResult Function(String password) passwordChanged,
|
|
required TResult Function() submitted,
|
|
}) => throw _privateConstructorUsedError;
|
|
@optionalTypeArgs
|
|
TResult? whenOrNull<TResult extends Object?>({
|
|
TResult? Function(String email)? emailChanged,
|
|
TResult? Function(String password)? passwordChanged,
|
|
TResult? Function()? submitted,
|
|
}) => throw _privateConstructorUsedError;
|
|
@optionalTypeArgs
|
|
TResult maybeWhen<TResult extends Object?>({
|
|
TResult Function(String email)? emailChanged,
|
|
TResult Function(String password)? passwordChanged,
|
|
TResult Function()? submitted,
|
|
required TResult orElse(),
|
|
}) => throw _privateConstructorUsedError;
|
|
@optionalTypeArgs
|
|
TResult map<TResult extends Object?>({
|
|
required TResult Function(_EmailChanged value) emailChanged,
|
|
required TResult Function(_PasswordChanged value) passwordChanged,
|
|
required TResult Function(_Submitted value) submitted,
|
|
}) => throw _privateConstructorUsedError;
|
|
@optionalTypeArgs
|
|
TResult? mapOrNull<TResult extends Object?>({
|
|
TResult? Function(_EmailChanged value)? emailChanged,
|
|
TResult? Function(_PasswordChanged value)? passwordChanged,
|
|
TResult? Function(_Submitted value)? submitted,
|
|
}) => throw _privateConstructorUsedError;
|
|
@optionalTypeArgs
|
|
TResult maybeMap<TResult extends Object?>({
|
|
TResult Function(_EmailChanged value)? emailChanged,
|
|
TResult Function(_PasswordChanged value)? passwordChanged,
|
|
TResult Function(_Submitted value)? submitted,
|
|
required TResult orElse(),
|
|
}) => throw _privateConstructorUsedError;
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class $LoginFormEventCopyWith<$Res> {
|
|
factory $LoginFormEventCopyWith(
|
|
LoginFormEvent value,
|
|
$Res Function(LoginFormEvent) then,
|
|
) = _$LoginFormEventCopyWithImpl<$Res, LoginFormEvent>;
|
|
}
|
|
|
|
/// @nodoc
|
|
class _$LoginFormEventCopyWithImpl<$Res, $Val extends LoginFormEvent>
|
|
implements $LoginFormEventCopyWith<$Res> {
|
|
_$LoginFormEventCopyWithImpl(this._value, this._then);
|
|
|
|
// ignore: unused_field
|
|
final $Val _value;
|
|
// ignore: unused_field
|
|
final $Res Function($Val) _then;
|
|
|
|
/// Create a copy of LoginFormEvent
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class _$$EmailChangedImplCopyWith<$Res> {
|
|
factory _$$EmailChangedImplCopyWith(
|
|
_$EmailChangedImpl value,
|
|
$Res Function(_$EmailChangedImpl) then,
|
|
) = __$$EmailChangedImplCopyWithImpl<$Res>;
|
|
@useResult
|
|
$Res call({String email});
|
|
}
|
|
|
|
/// @nodoc
|
|
class __$$EmailChangedImplCopyWithImpl<$Res>
|
|
extends _$LoginFormEventCopyWithImpl<$Res, _$EmailChangedImpl>
|
|
implements _$$EmailChangedImplCopyWith<$Res> {
|
|
__$$EmailChangedImplCopyWithImpl(
|
|
_$EmailChangedImpl _value,
|
|
$Res Function(_$EmailChangedImpl) _then,
|
|
) : super(_value, _then);
|
|
|
|
/// Create a copy of LoginFormEvent
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({Object? email = null}) {
|
|
return _then(
|
|
_$EmailChangedImpl(
|
|
null == email
|
|
? _value.email
|
|
: email // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
|
|
class _$EmailChangedImpl implements _EmailChanged {
|
|
const _$EmailChangedImpl(this.email);
|
|
|
|
@override
|
|
final String email;
|
|
|
|
@override
|
|
String toString() {
|
|
return 'LoginFormEvent.emailChanged(email: $email)';
|
|
}
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
return identical(this, other) ||
|
|
(other.runtimeType == runtimeType &&
|
|
other is _$EmailChangedImpl &&
|
|
(identical(other.email, email) || other.email == email));
|
|
}
|
|
|
|
@override
|
|
int get hashCode => Object.hash(runtimeType, email);
|
|
|
|
/// Create a copy of LoginFormEvent
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
@override
|
|
@pragma('vm:prefer-inline')
|
|
_$$EmailChangedImplCopyWith<_$EmailChangedImpl> get copyWith =>
|
|
__$$EmailChangedImplCopyWithImpl<_$EmailChangedImpl>(this, _$identity);
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult when<TResult extends Object?>({
|
|
required TResult Function(String email) emailChanged,
|
|
required TResult Function(String password) passwordChanged,
|
|
required TResult Function() submitted,
|
|
}) {
|
|
return emailChanged(email);
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult? whenOrNull<TResult extends Object?>({
|
|
TResult? Function(String email)? emailChanged,
|
|
TResult? Function(String password)? passwordChanged,
|
|
TResult? Function()? submitted,
|
|
}) {
|
|
return emailChanged?.call(email);
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult maybeWhen<TResult extends Object?>({
|
|
TResult Function(String email)? emailChanged,
|
|
TResult Function(String password)? passwordChanged,
|
|
TResult Function()? submitted,
|
|
required TResult orElse(),
|
|
}) {
|
|
if (emailChanged != null) {
|
|
return emailChanged(email);
|
|
}
|
|
return orElse();
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult map<TResult extends Object?>({
|
|
required TResult Function(_EmailChanged value) emailChanged,
|
|
required TResult Function(_PasswordChanged value) passwordChanged,
|
|
required TResult Function(_Submitted value) submitted,
|
|
}) {
|
|
return emailChanged(this);
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult? mapOrNull<TResult extends Object?>({
|
|
TResult? Function(_EmailChanged value)? emailChanged,
|
|
TResult? Function(_PasswordChanged value)? passwordChanged,
|
|
TResult? Function(_Submitted value)? submitted,
|
|
}) {
|
|
return emailChanged?.call(this);
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult maybeMap<TResult extends Object?>({
|
|
TResult Function(_EmailChanged value)? emailChanged,
|
|
TResult Function(_PasswordChanged value)? passwordChanged,
|
|
TResult Function(_Submitted value)? submitted,
|
|
required TResult orElse(),
|
|
}) {
|
|
if (emailChanged != null) {
|
|
return emailChanged(this);
|
|
}
|
|
return orElse();
|
|
}
|
|
}
|
|
|
|
abstract class _EmailChanged implements LoginFormEvent {
|
|
const factory _EmailChanged(final String email) = _$EmailChangedImpl;
|
|
|
|
String get email;
|
|
|
|
/// Create a copy of LoginFormEvent
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
_$$EmailChangedImplCopyWith<_$EmailChangedImpl> get copyWith =>
|
|
throw _privateConstructorUsedError;
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class _$$PasswordChangedImplCopyWith<$Res> {
|
|
factory _$$PasswordChangedImplCopyWith(
|
|
_$PasswordChangedImpl value,
|
|
$Res Function(_$PasswordChangedImpl) then,
|
|
) = __$$PasswordChangedImplCopyWithImpl<$Res>;
|
|
@useResult
|
|
$Res call({String password});
|
|
}
|
|
|
|
/// @nodoc
|
|
class __$$PasswordChangedImplCopyWithImpl<$Res>
|
|
extends _$LoginFormEventCopyWithImpl<$Res, _$PasswordChangedImpl>
|
|
implements _$$PasswordChangedImplCopyWith<$Res> {
|
|
__$$PasswordChangedImplCopyWithImpl(
|
|
_$PasswordChangedImpl _value,
|
|
$Res Function(_$PasswordChangedImpl) _then,
|
|
) : super(_value, _then);
|
|
|
|
/// Create a copy of LoginFormEvent
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({Object? password = null}) {
|
|
return _then(
|
|
_$PasswordChangedImpl(
|
|
null == password
|
|
? _value.password
|
|
: password // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
|
|
class _$PasswordChangedImpl implements _PasswordChanged {
|
|
const _$PasswordChangedImpl(this.password);
|
|
|
|
@override
|
|
final String password;
|
|
|
|
@override
|
|
String toString() {
|
|
return 'LoginFormEvent.passwordChanged(password: $password)';
|
|
}
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
return identical(this, other) ||
|
|
(other.runtimeType == runtimeType &&
|
|
other is _$PasswordChangedImpl &&
|
|
(identical(other.password, password) ||
|
|
other.password == password));
|
|
}
|
|
|
|
@override
|
|
int get hashCode => Object.hash(runtimeType, password);
|
|
|
|
/// Create a copy of LoginFormEvent
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
@override
|
|
@pragma('vm:prefer-inline')
|
|
_$$PasswordChangedImplCopyWith<_$PasswordChangedImpl> get copyWith =>
|
|
__$$PasswordChangedImplCopyWithImpl<_$PasswordChangedImpl>(
|
|
this,
|
|
_$identity,
|
|
);
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult when<TResult extends Object?>({
|
|
required TResult Function(String email) emailChanged,
|
|
required TResult Function(String password) passwordChanged,
|
|
required TResult Function() submitted,
|
|
}) {
|
|
return passwordChanged(password);
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult? whenOrNull<TResult extends Object?>({
|
|
TResult? Function(String email)? emailChanged,
|
|
TResult? Function(String password)? passwordChanged,
|
|
TResult? Function()? submitted,
|
|
}) {
|
|
return passwordChanged?.call(password);
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult maybeWhen<TResult extends Object?>({
|
|
TResult Function(String email)? emailChanged,
|
|
TResult Function(String password)? passwordChanged,
|
|
TResult Function()? submitted,
|
|
required TResult orElse(),
|
|
}) {
|
|
if (passwordChanged != null) {
|
|
return passwordChanged(password);
|
|
}
|
|
return orElse();
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult map<TResult extends Object?>({
|
|
required TResult Function(_EmailChanged value) emailChanged,
|
|
required TResult Function(_PasswordChanged value) passwordChanged,
|
|
required TResult Function(_Submitted value) submitted,
|
|
}) {
|
|
return passwordChanged(this);
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult? mapOrNull<TResult extends Object?>({
|
|
TResult? Function(_EmailChanged value)? emailChanged,
|
|
TResult? Function(_PasswordChanged value)? passwordChanged,
|
|
TResult? Function(_Submitted value)? submitted,
|
|
}) {
|
|
return passwordChanged?.call(this);
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult maybeMap<TResult extends Object?>({
|
|
TResult Function(_EmailChanged value)? emailChanged,
|
|
TResult Function(_PasswordChanged value)? passwordChanged,
|
|
TResult Function(_Submitted value)? submitted,
|
|
required TResult orElse(),
|
|
}) {
|
|
if (passwordChanged != null) {
|
|
return passwordChanged(this);
|
|
}
|
|
return orElse();
|
|
}
|
|
}
|
|
|
|
abstract class _PasswordChanged implements LoginFormEvent {
|
|
const factory _PasswordChanged(final String password) = _$PasswordChangedImpl;
|
|
|
|
String get password;
|
|
|
|
/// Create a copy of LoginFormEvent
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
_$$PasswordChangedImplCopyWith<_$PasswordChangedImpl> get copyWith =>
|
|
throw _privateConstructorUsedError;
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class _$$SubmittedImplCopyWith<$Res> {
|
|
factory _$$SubmittedImplCopyWith(
|
|
_$SubmittedImpl value,
|
|
$Res Function(_$SubmittedImpl) then,
|
|
) = __$$SubmittedImplCopyWithImpl<$Res>;
|
|
}
|
|
|
|
/// @nodoc
|
|
class __$$SubmittedImplCopyWithImpl<$Res>
|
|
extends _$LoginFormEventCopyWithImpl<$Res, _$SubmittedImpl>
|
|
implements _$$SubmittedImplCopyWith<$Res> {
|
|
__$$SubmittedImplCopyWithImpl(
|
|
_$SubmittedImpl _value,
|
|
$Res Function(_$SubmittedImpl) _then,
|
|
) : super(_value, _then);
|
|
|
|
/// Create a copy of LoginFormEvent
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
}
|
|
|
|
/// @nodoc
|
|
|
|
class _$SubmittedImpl implements _Submitted {
|
|
const _$SubmittedImpl();
|
|
|
|
@override
|
|
String toString() {
|
|
return 'LoginFormEvent.submitted()';
|
|
}
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
return identical(this, other) ||
|
|
(other.runtimeType == runtimeType && other is _$SubmittedImpl);
|
|
}
|
|
|
|
@override
|
|
int get hashCode => runtimeType.hashCode;
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult when<TResult extends Object?>({
|
|
required TResult Function(String email) emailChanged,
|
|
required TResult Function(String password) passwordChanged,
|
|
required TResult Function() submitted,
|
|
}) {
|
|
return submitted();
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult? whenOrNull<TResult extends Object?>({
|
|
TResult? Function(String email)? emailChanged,
|
|
TResult? Function(String password)? passwordChanged,
|
|
TResult? Function()? submitted,
|
|
}) {
|
|
return submitted?.call();
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult maybeWhen<TResult extends Object?>({
|
|
TResult Function(String email)? emailChanged,
|
|
TResult Function(String password)? passwordChanged,
|
|
TResult Function()? submitted,
|
|
required TResult orElse(),
|
|
}) {
|
|
if (submitted != null) {
|
|
return submitted();
|
|
}
|
|
return orElse();
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult map<TResult extends Object?>({
|
|
required TResult Function(_EmailChanged value) emailChanged,
|
|
required TResult Function(_PasswordChanged value) passwordChanged,
|
|
required TResult Function(_Submitted value) submitted,
|
|
}) {
|
|
return submitted(this);
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult? mapOrNull<TResult extends Object?>({
|
|
TResult? Function(_EmailChanged value)? emailChanged,
|
|
TResult? Function(_PasswordChanged value)? passwordChanged,
|
|
TResult? Function(_Submitted value)? submitted,
|
|
}) {
|
|
return submitted?.call(this);
|
|
}
|
|
|
|
@override
|
|
@optionalTypeArgs
|
|
TResult maybeMap<TResult extends Object?>({
|
|
TResult Function(_EmailChanged value)? emailChanged,
|
|
TResult Function(_PasswordChanged value)? passwordChanged,
|
|
TResult Function(_Submitted value)? submitted,
|
|
required TResult orElse(),
|
|
}) {
|
|
if (submitted != null) {
|
|
return submitted(this);
|
|
}
|
|
return orElse();
|
|
}
|
|
}
|
|
|
|
abstract class _Submitted implements LoginFormEvent {
|
|
const factory _Submitted() = _$SubmittedImpl;
|
|
}
|
|
|
|
/// @nodoc
|
|
mixin _$LoginFormState {
|
|
String get email => throw _privateConstructorUsedError;
|
|
String get password => throw _privateConstructorUsedError;
|
|
Option<Either<AuthFailure, Login>> get failureOrLoginOption =>
|
|
throw _privateConstructorUsedError;
|
|
bool get isSubmitting => throw _privateConstructorUsedError;
|
|
bool get showErrorMessages => throw _privateConstructorUsedError;
|
|
|
|
/// Create a copy of LoginFormState
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
$LoginFormStateCopyWith<LoginFormState> get copyWith =>
|
|
throw _privateConstructorUsedError;
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class $LoginFormStateCopyWith<$Res> {
|
|
factory $LoginFormStateCopyWith(
|
|
LoginFormState value,
|
|
$Res Function(LoginFormState) then,
|
|
) = _$LoginFormStateCopyWithImpl<$Res, LoginFormState>;
|
|
@useResult
|
|
$Res call({
|
|
String email,
|
|
String password,
|
|
Option<Either<AuthFailure, Login>> failureOrLoginOption,
|
|
bool isSubmitting,
|
|
bool showErrorMessages,
|
|
});
|
|
}
|
|
|
|
/// @nodoc
|
|
class _$LoginFormStateCopyWithImpl<$Res, $Val extends LoginFormState>
|
|
implements $LoginFormStateCopyWith<$Res> {
|
|
_$LoginFormStateCopyWithImpl(this._value, this._then);
|
|
|
|
// ignore: unused_field
|
|
final $Val _value;
|
|
// ignore: unused_field
|
|
final $Res Function($Val) _then;
|
|
|
|
/// Create a copy of LoginFormState
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({
|
|
Object? email = null,
|
|
Object? password = null,
|
|
Object? failureOrLoginOption = null,
|
|
Object? isSubmitting = null,
|
|
Object? showErrorMessages = null,
|
|
}) {
|
|
return _then(
|
|
_value.copyWith(
|
|
email: null == email
|
|
? _value.email
|
|
: email // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
password: null == password
|
|
? _value.password
|
|
: password // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
failureOrLoginOption: null == failureOrLoginOption
|
|
? _value.failureOrLoginOption
|
|
: failureOrLoginOption // ignore: cast_nullable_to_non_nullable
|
|
as Option<Either<AuthFailure, Login>>,
|
|
isSubmitting: null == isSubmitting
|
|
? _value.isSubmitting
|
|
: isSubmitting // ignore: cast_nullable_to_non_nullable
|
|
as bool,
|
|
showErrorMessages: null == showErrorMessages
|
|
? _value.showErrorMessages
|
|
: showErrorMessages // ignore: cast_nullable_to_non_nullable
|
|
as bool,
|
|
)
|
|
as $Val,
|
|
);
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class _$$LoginFormStateImplCopyWith<$Res>
|
|
implements $LoginFormStateCopyWith<$Res> {
|
|
factory _$$LoginFormStateImplCopyWith(
|
|
_$LoginFormStateImpl value,
|
|
$Res Function(_$LoginFormStateImpl) then,
|
|
) = __$$LoginFormStateImplCopyWithImpl<$Res>;
|
|
@override
|
|
@useResult
|
|
$Res call({
|
|
String email,
|
|
String password,
|
|
Option<Either<AuthFailure, Login>> failureOrLoginOption,
|
|
bool isSubmitting,
|
|
bool showErrorMessages,
|
|
});
|
|
}
|
|
|
|
/// @nodoc
|
|
class __$$LoginFormStateImplCopyWithImpl<$Res>
|
|
extends _$LoginFormStateCopyWithImpl<$Res, _$LoginFormStateImpl>
|
|
implements _$$LoginFormStateImplCopyWith<$Res> {
|
|
__$$LoginFormStateImplCopyWithImpl(
|
|
_$LoginFormStateImpl _value,
|
|
$Res Function(_$LoginFormStateImpl) _then,
|
|
) : super(_value, _then);
|
|
|
|
/// Create a copy of LoginFormState
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({
|
|
Object? email = null,
|
|
Object? password = null,
|
|
Object? failureOrLoginOption = null,
|
|
Object? isSubmitting = null,
|
|
Object? showErrorMessages = null,
|
|
}) {
|
|
return _then(
|
|
_$LoginFormStateImpl(
|
|
email: null == email
|
|
? _value.email
|
|
: email // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
password: null == password
|
|
? _value.password
|
|
: password // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
failureOrLoginOption: null == failureOrLoginOption
|
|
? _value.failureOrLoginOption
|
|
: failureOrLoginOption // ignore: cast_nullable_to_non_nullable
|
|
as Option<Either<AuthFailure, Login>>,
|
|
isSubmitting: null == isSubmitting
|
|
? _value.isSubmitting
|
|
: isSubmitting // ignore: cast_nullable_to_non_nullable
|
|
as bool,
|
|
showErrorMessages: null == showErrorMessages
|
|
? _value.showErrorMessages
|
|
: showErrorMessages // ignore: cast_nullable_to_non_nullable
|
|
as bool,
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
|
|
class _$LoginFormStateImpl implements _LoginFormState {
|
|
const _$LoginFormStateImpl({
|
|
required this.email,
|
|
required this.password,
|
|
required this.failureOrLoginOption,
|
|
this.isSubmitting = false,
|
|
this.showErrorMessages = false,
|
|
});
|
|
|
|
@override
|
|
final String email;
|
|
@override
|
|
final String password;
|
|
@override
|
|
final Option<Either<AuthFailure, Login>> failureOrLoginOption;
|
|
@override
|
|
@JsonKey()
|
|
final bool isSubmitting;
|
|
@override
|
|
@JsonKey()
|
|
final bool showErrorMessages;
|
|
|
|
@override
|
|
String toString() {
|
|
return 'LoginFormState(email: $email, password: $password, failureOrLoginOption: $failureOrLoginOption, isSubmitting: $isSubmitting, showErrorMessages: $showErrorMessages)';
|
|
}
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
return identical(this, other) ||
|
|
(other.runtimeType == runtimeType &&
|
|
other is _$LoginFormStateImpl &&
|
|
(identical(other.email, email) || other.email == email) &&
|
|
(identical(other.password, password) ||
|
|
other.password == password) &&
|
|
(identical(other.failureOrLoginOption, failureOrLoginOption) ||
|
|
other.failureOrLoginOption == failureOrLoginOption) &&
|
|
(identical(other.isSubmitting, isSubmitting) ||
|
|
other.isSubmitting == isSubmitting) &&
|
|
(identical(other.showErrorMessages, showErrorMessages) ||
|
|
other.showErrorMessages == showErrorMessages));
|
|
}
|
|
|
|
@override
|
|
int get hashCode => Object.hash(
|
|
runtimeType,
|
|
email,
|
|
password,
|
|
failureOrLoginOption,
|
|
isSubmitting,
|
|
showErrorMessages,
|
|
);
|
|
|
|
/// Create a copy of LoginFormState
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
@override
|
|
@pragma('vm:prefer-inline')
|
|
_$$LoginFormStateImplCopyWith<_$LoginFormStateImpl> get copyWith =>
|
|
__$$LoginFormStateImplCopyWithImpl<_$LoginFormStateImpl>(
|
|
this,
|
|
_$identity,
|
|
);
|
|
}
|
|
|
|
abstract class _LoginFormState implements LoginFormState {
|
|
const factory _LoginFormState({
|
|
required final String email,
|
|
required final String password,
|
|
required final Option<Either<AuthFailure, Login>> failureOrLoginOption,
|
|
final bool isSubmitting,
|
|
final bool showErrorMessages,
|
|
}) = _$LoginFormStateImpl;
|
|
|
|
@override
|
|
String get email;
|
|
@override
|
|
String get password;
|
|
@override
|
|
Option<Either<AuthFailure, Login>> get failureOrLoginOption;
|
|
@override
|
|
bool get isSubmitting;
|
|
@override
|
|
bool get showErrorMessages;
|
|
|
|
/// Create a copy of LoginFormState
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@override
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
_$$LoginFormStateImplCopyWith<_$LoginFormStateImpl> get copyWith =>
|
|
throw _privateConstructorUsedError;
|
|
}
|