yubioath-flutter/lib/fido/models.freezed.dart

1413 lines
38 KiB
Dart
Raw Normal View History

2022-03-15 19:16:14 +03:00
// coverage:ignore-file
// 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, invalid_annotation_target
part of 'models.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');
FidoState _$FidoStateFromJson(Map<String, dynamic> json) {
return _FidoState.fromJson(json);
}
/// @nodoc
class _$FidoStateTearOff {
const _$FidoStateTearOff();
_FidoState call(
{required Map<String, dynamic> info, required bool unlocked}) {
2022-03-15 19:16:14 +03:00
return _FidoState(
info: info,
unlocked: unlocked,
2022-03-15 19:16:14 +03:00
);
}
FidoState fromJson(Map<String, Object?> json) {
return FidoState.fromJson(json);
}
}
/// @nodoc
const $FidoState = _$FidoStateTearOff();
/// @nodoc
mixin _$FidoState {
Map<String, dynamic> get info => throw _privateConstructorUsedError;
bool get unlocked => throw _privateConstructorUsedError;
2022-03-15 19:16:14 +03:00
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
@JsonKey(ignore: true)
$FidoStateCopyWith<FidoState> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $FidoStateCopyWith<$Res> {
factory $FidoStateCopyWith(FidoState value, $Res Function(FidoState) then) =
_$FidoStateCopyWithImpl<$Res>;
$Res call({Map<String, dynamic> info, bool unlocked});
2022-03-15 19:16:14 +03:00
}
/// @nodoc
class _$FidoStateCopyWithImpl<$Res> implements $FidoStateCopyWith<$Res> {
_$FidoStateCopyWithImpl(this._value, this._then);
final FidoState _value;
// ignore: unused_field
final $Res Function(FidoState) _then;
@override
$Res call({
Object? info = freezed,
Object? unlocked = freezed,
2022-03-15 19:16:14 +03:00
}) {
return _then(_value.copyWith(
info: info == freezed
? _value.info
: info // ignore: cast_nullable_to_non_nullable
as Map<String, dynamic>,
unlocked: unlocked == freezed
? _value.unlocked
: unlocked // ignore: cast_nullable_to_non_nullable
as bool,
2022-03-15 19:16:14 +03:00
));
}
}
/// @nodoc
abstract class _$FidoStateCopyWith<$Res> implements $FidoStateCopyWith<$Res> {
factory _$FidoStateCopyWith(
_FidoState value, $Res Function(_FidoState) then) =
__$FidoStateCopyWithImpl<$Res>;
@override
$Res call({Map<String, dynamic> info, bool unlocked});
2022-03-15 19:16:14 +03:00
}
/// @nodoc
class __$FidoStateCopyWithImpl<$Res> extends _$FidoStateCopyWithImpl<$Res>
implements _$FidoStateCopyWith<$Res> {
__$FidoStateCopyWithImpl(_FidoState _value, $Res Function(_FidoState) _then)
: super(_value, (v) => _then(v as _FidoState));
@override
_FidoState get _value => super._value as _FidoState;
@override
$Res call({
Object? info = freezed,
Object? unlocked = freezed,
2022-03-15 19:16:14 +03:00
}) {
return _then(_FidoState(
info: info == freezed
? _value.info
: info // ignore: cast_nullable_to_non_nullable
as Map<String, dynamic>,
unlocked: unlocked == freezed
? _value.unlocked
: unlocked // ignore: cast_nullable_to_non_nullable
as bool,
2022-03-15 19:16:14 +03:00
));
}
}
/// @nodoc
@JsonSerializable()
class _$_FidoState extends _FidoState {
_$_FidoState({required this.info, required this.unlocked}) : super._();
2022-03-15 19:16:14 +03:00
factory _$_FidoState.fromJson(Map<String, dynamic> json) =>
_$$_FidoStateFromJson(json);
@override
final Map<String, dynamic> info;
@override
final bool unlocked;
2022-03-15 19:16:14 +03:00
@override
String toString() {
return 'FidoState(info: $info, unlocked: $unlocked)';
2022-03-15 19:16:14 +03:00
}
@override
bool operator ==(dynamic other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _FidoState &&
const DeepCollectionEquality().equals(other.info, info) &&
const DeepCollectionEquality().equals(other.unlocked, unlocked));
2022-03-15 19:16:14 +03:00
}
@override
int get hashCode => Object.hash(
runtimeType,
const DeepCollectionEquality().hash(info),
const DeepCollectionEquality().hash(unlocked));
2022-03-15 19:16:14 +03:00
@JsonKey(ignore: true)
@override
_$FidoStateCopyWith<_FidoState> get copyWith =>
__$FidoStateCopyWithImpl<_FidoState>(this, _$identity);
@override
Map<String, dynamic> toJson() {
return _$$_FidoStateToJson(this);
}
}
abstract class _FidoState extends FidoState {
factory _FidoState(
{required Map<String, dynamic> info,
required bool unlocked}) = _$_FidoState;
2022-03-15 19:16:14 +03:00
_FidoState._() : super._();
factory _FidoState.fromJson(Map<String, dynamic> json) =
_$_FidoState.fromJson;
@override
Map<String, dynamic> get info;
@override
bool get unlocked;
@override
2022-03-15 19:16:14 +03:00
@JsonKey(ignore: true)
_$FidoStateCopyWith<_FidoState> get copyWith =>
throw _privateConstructorUsedError;
}
2022-03-17 15:06:48 +03:00
/// @nodoc
class _$PinResultTearOff {
const _$PinResultTearOff();
_PinSuccess success() {
return _PinSuccess();
2022-03-17 15:06:48 +03:00
}
_PinFailure failed(int retries, bool authBlocked) {
return _PinFailure(
2022-03-17 15:06:48 +03:00
retries,
authBlocked,
);
}
}
/// @nodoc
const $PinResult = _$PinResultTearOff();
/// @nodoc
mixin _$PinResult {
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function() success,
required TResult Function(int retries, bool authBlocked) failed,
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function()? success,
TResult Function(int retries, bool authBlocked)? failed,
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function()? success,
TResult Function(int retries, bool authBlocked)? failed,
required TResult orElse(),
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(_PinSuccess value) success,
required TResult Function(_PinFailure value) failed,
2022-03-17 15:06:48 +03:00
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(_PinSuccess value)? success,
TResult Function(_PinFailure value)? failed,
2022-03-17 15:06:48 +03:00
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(_PinSuccess value)? success,
TResult Function(_PinFailure value)? failed,
2022-03-17 15:06:48 +03:00
required TResult orElse(),
}) =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $PinResultCopyWith<$Res> {
factory $PinResultCopyWith(PinResult value, $Res Function(PinResult) then) =
_$PinResultCopyWithImpl<$Res>;
}
/// @nodoc
class _$PinResultCopyWithImpl<$Res> implements $PinResultCopyWith<$Res> {
_$PinResultCopyWithImpl(this._value, this._then);
final PinResult _value;
// ignore: unused_field
final $Res Function(PinResult) _then;
}
/// @nodoc
abstract class _$PinSuccessCopyWith<$Res> {
factory _$PinSuccessCopyWith(
_PinSuccess value, $Res Function(_PinSuccess) then) =
__$PinSuccessCopyWithImpl<$Res>;
2022-03-17 15:06:48 +03:00
}
/// @nodoc
class __$PinSuccessCopyWithImpl<$Res> extends _$PinResultCopyWithImpl<$Res>
implements _$PinSuccessCopyWith<$Res> {
__$PinSuccessCopyWithImpl(
_PinSuccess _value, $Res Function(_PinSuccess) _then)
: super(_value, (v) => _then(v as _PinSuccess));
2022-03-17 15:06:48 +03:00
@override
_PinSuccess get _value => super._value as _PinSuccess;
2022-03-17 15:06:48 +03:00
}
/// @nodoc
class _$_PinSuccess implements _PinSuccess {
_$_PinSuccess();
2022-03-17 15:06:48 +03:00
@override
String toString() {
return 'PinResult.success()';
}
@override
bool operator ==(dynamic other) {
return identical(this, other) ||
(other.runtimeType == runtimeType && other is _PinSuccess);
2022-03-17 15:06:48 +03:00
}
@override
int get hashCode => runtimeType.hashCode;
@override
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function() success,
required TResult Function(int retries, bool authBlocked) failed,
}) {
return success();
}
@override
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function()? success,
TResult Function(int retries, bool authBlocked)? failed,
}) {
return success?.call();
}
@override
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function()? success,
TResult Function(int retries, bool authBlocked)? failed,
required TResult orElse(),
}) {
if (success != null) {
return success();
}
return orElse();
}
@override
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(_PinSuccess value) success,
required TResult Function(_PinFailure value) failed,
2022-03-17 15:06:48 +03:00
}) {
return success(this);
}
@override
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(_PinSuccess value)? success,
TResult Function(_PinFailure value)? failed,
2022-03-17 15:06:48 +03:00
}) {
return success?.call(this);
}
@override
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(_PinSuccess value)? success,
TResult Function(_PinFailure value)? failed,
2022-03-17 15:06:48 +03:00
required TResult orElse(),
}) {
if (success != null) {
return success(this);
}
return orElse();
}
}
abstract class _PinSuccess implements PinResult {
factory _PinSuccess() = _$_PinSuccess;
2022-03-17 15:06:48 +03:00
}
/// @nodoc
abstract class _$PinFailureCopyWith<$Res> {
factory _$PinFailureCopyWith(
_PinFailure value, $Res Function(_PinFailure) then) =
__$PinFailureCopyWithImpl<$Res>;
2022-03-17 15:06:48 +03:00
$Res call({int retries, bool authBlocked});
}
/// @nodoc
class __$PinFailureCopyWithImpl<$Res> extends _$PinResultCopyWithImpl<$Res>
implements _$PinFailureCopyWith<$Res> {
__$PinFailureCopyWithImpl(
_PinFailure _value, $Res Function(_PinFailure) _then)
: super(_value, (v) => _then(v as _PinFailure));
2022-03-17 15:06:48 +03:00
@override
_PinFailure get _value => super._value as _PinFailure;
2022-03-17 15:06:48 +03:00
@override
$Res call({
Object? retries = freezed,
Object? authBlocked = freezed,
}) {
return _then(_PinFailure(
2022-03-17 15:06:48 +03:00
retries == freezed
? _value.retries
: retries // ignore: cast_nullable_to_non_nullable
as int,
authBlocked == freezed
? _value.authBlocked
: authBlocked // ignore: cast_nullable_to_non_nullable
as bool,
));
}
}
/// @nodoc
class _$_PinFailure implements _PinFailure {
_$_PinFailure(this.retries, this.authBlocked);
2022-03-17 15:06:48 +03:00
@override
final int retries;
@override
final bool authBlocked;
@override
String toString() {
return 'PinResult.failed(retries: $retries, authBlocked: $authBlocked)';
}
@override
bool operator ==(dynamic other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _PinFailure &&
2022-03-17 15:06:48 +03:00
const DeepCollectionEquality().equals(other.retries, retries) &&
const DeepCollectionEquality()
.equals(other.authBlocked, authBlocked));
}
@override
int get hashCode => Object.hash(
runtimeType,
const DeepCollectionEquality().hash(retries),
const DeepCollectionEquality().hash(authBlocked));
@JsonKey(ignore: true)
@override
_$PinFailureCopyWith<_PinFailure> get copyWith =>
__$PinFailureCopyWithImpl<_PinFailure>(this, _$identity);
2022-03-17 15:06:48 +03:00
@override
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function() success,
required TResult Function(int retries, bool authBlocked) failed,
}) {
return failed(retries, authBlocked);
}
@override
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function()? success,
TResult Function(int retries, bool authBlocked)? failed,
}) {
return failed?.call(retries, authBlocked);
}
@override
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function()? success,
TResult Function(int retries, bool authBlocked)? failed,
required TResult orElse(),
}) {
if (failed != null) {
return failed(retries, authBlocked);
}
return orElse();
}
@override
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(_PinSuccess value) success,
required TResult Function(_PinFailure value) failed,
2022-03-17 15:06:48 +03:00
}) {
return failed(this);
}
@override
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(_PinSuccess value)? success,
TResult Function(_PinFailure value)? failed,
2022-03-17 15:06:48 +03:00
}) {
return failed?.call(this);
}
@override
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(_PinSuccess value)? success,
TResult Function(_PinFailure value)? failed,
2022-03-17 15:06:48 +03:00
required TResult orElse(),
}) {
if (failed != null) {
return failed(this);
}
return orElse();
}
}
abstract class _PinFailure implements PinResult {
factory _PinFailure(int retries, bool authBlocked) = _$_PinFailure;
2022-03-17 15:06:48 +03:00
int get retries;
bool get authBlocked;
@JsonKey(ignore: true)
_$PinFailureCopyWith<_PinFailure> get copyWith =>
throw _privateConstructorUsedError;
}
2022-03-23 11:49:20 +03:00
Fingerprint _$FingerprintFromJson(Map<String, dynamic> json) {
return _Fingerprint.fromJson(json);
}
/// @nodoc
class _$FingerprintTearOff {
const _$FingerprintTearOff();
2022-03-23 11:49:20 +03:00
_Fingerprint call(String templateId, String? name) {
return _Fingerprint(
2022-03-23 11:49:20 +03:00
templateId,
name,
);
}
2022-03-23 11:49:20 +03:00
Fingerprint fromJson(Map<String, Object?> json) {
return Fingerprint.fromJson(json);
}
}
/// @nodoc
const $Fingerprint = _$FingerprintTearOff();
/// @nodoc
mixin _$Fingerprint {
2022-03-23 11:49:20 +03:00
String get templateId => throw _privateConstructorUsedError;
String? get name => throw _privateConstructorUsedError;
2022-03-23 11:49:20 +03:00
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
@JsonKey(ignore: true)
$FingerprintCopyWith<Fingerprint> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $FingerprintCopyWith<$Res> {
factory $FingerprintCopyWith(
Fingerprint value, $Res Function(Fingerprint) then) =
_$FingerprintCopyWithImpl<$Res>;
2022-03-23 11:49:20 +03:00
$Res call({String templateId, String? name});
}
/// @nodoc
class _$FingerprintCopyWithImpl<$Res> implements $FingerprintCopyWith<$Res> {
_$FingerprintCopyWithImpl(this._value, this._then);
final Fingerprint _value;
// ignore: unused_field
final $Res Function(Fingerprint) _then;
@override
$Res call({
2022-03-23 11:49:20 +03:00
Object? templateId = freezed,
Object? name = freezed,
}) {
return _then(_value.copyWith(
2022-03-23 11:49:20 +03:00
templateId: templateId == freezed
? _value.templateId
: templateId // ignore: cast_nullable_to_non_nullable
as String,
2022-03-23 11:49:20 +03:00
name: name == freezed
? _value.name
: name // ignore: cast_nullable_to_non_nullable
as String?,
));
}
}
/// @nodoc
abstract class _$FingerprintCopyWith<$Res>
implements $FingerprintCopyWith<$Res> {
factory _$FingerprintCopyWith(
_Fingerprint value, $Res Function(_Fingerprint) then) =
__$FingerprintCopyWithImpl<$Res>;
@override
2022-03-23 11:49:20 +03:00
$Res call({String templateId, String? name});
}
/// @nodoc
class __$FingerprintCopyWithImpl<$Res> extends _$FingerprintCopyWithImpl<$Res>
implements _$FingerprintCopyWith<$Res> {
__$FingerprintCopyWithImpl(
_Fingerprint _value, $Res Function(_Fingerprint) _then)
: super(_value, (v) => _then(v as _Fingerprint));
@override
_Fingerprint get _value => super._value as _Fingerprint;
@override
$Res call({
2022-03-23 11:49:20 +03:00
Object? templateId = freezed,
Object? name = freezed,
}) {
return _then(_Fingerprint(
2022-03-23 11:49:20 +03:00
templateId == freezed
? _value.templateId
: templateId // ignore: cast_nullable_to_non_nullable
as String,
2022-03-23 11:49:20 +03:00
name == freezed
? _value.name
: name // ignore: cast_nullable_to_non_nullable
as String?,
));
}
}
/// @nodoc
2022-03-23 11:49:20 +03:00
@JsonSerializable()
class _$_Fingerprint extends _Fingerprint {
_$_Fingerprint(this.templateId, this.name) : super._();
2022-03-23 11:49:20 +03:00
factory _$_Fingerprint.fromJson(Map<String, dynamic> json) =>
_$$_FingerprintFromJson(json);
@override
2022-03-23 11:49:20 +03:00
final String templateId;
@override
2022-03-23 11:49:20 +03:00
final String? name;
@override
String toString() {
2022-03-23 11:49:20 +03:00
return 'Fingerprint(templateId: $templateId, name: $name)';
}
@override
bool operator ==(dynamic other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _Fingerprint &&
2022-03-23 11:49:20 +03:00
const DeepCollectionEquality()
.equals(other.templateId, templateId) &&
const DeepCollectionEquality().equals(other.name, name));
}
@override
int get hashCode => Object.hash(
runtimeType,
2022-03-23 11:49:20 +03:00
const DeepCollectionEquality().hash(templateId),
const DeepCollectionEquality().hash(name));
@JsonKey(ignore: true)
@override
_$FingerprintCopyWith<_Fingerprint> get copyWith =>
__$FingerprintCopyWithImpl<_Fingerprint>(this, _$identity);
2022-03-23 11:49:20 +03:00
@override
Map<String, dynamic> toJson() {
return _$$_FingerprintToJson(this);
}
}
2022-03-23 11:49:20 +03:00
abstract class _Fingerprint extends Fingerprint {
factory _Fingerprint(String templateId, String? name) = _$_Fingerprint;
_Fingerprint._() : super._();
factory _Fingerprint.fromJson(Map<String, dynamic> json) =
_$_Fingerprint.fromJson;
@override
2022-03-23 11:49:20 +03:00
String get templateId;
@override
2022-03-23 11:49:20 +03:00
String? get name;
@override
@JsonKey(ignore: true)
_$FingerprintCopyWith<_Fingerprint> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
class _$FingerprintEventTearOff {
const _$FingerprintEventTearOff();
_EventCapture capture(int remaining) {
return _EventCapture(
remaining,
);
}
2022-03-23 11:49:20 +03:00
_EventComplete complete(Fingerprint fingerprint) {
return _EventComplete(
2022-03-23 11:49:20 +03:00
fingerprint,
);
}
_EventError error(int code) {
return _EventError(
code,
);
}
}
/// @nodoc
const $FingerprintEvent = _$FingerprintEventTearOff();
/// @nodoc
mixin _$FingerprintEvent {
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function(int remaining) capture,
2022-03-23 11:49:20 +03:00
required TResult Function(Fingerprint fingerprint) complete,
required TResult Function(int code) error,
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function(int remaining)? capture,
2022-03-23 11:49:20 +03:00
TResult Function(Fingerprint fingerprint)? complete,
TResult Function(int code)? error,
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function(int remaining)? capture,
2022-03-23 11:49:20 +03:00
TResult Function(Fingerprint fingerprint)? complete,
TResult Function(int code)? error,
required TResult orElse(),
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(_EventCapture value) capture,
required TResult Function(_EventComplete value) complete,
required TResult Function(_EventError value) error,
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(_EventCapture value)? capture,
TResult Function(_EventComplete value)? complete,
TResult Function(_EventError value)? error,
}) =>
throw _privateConstructorUsedError;
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(_EventCapture value)? capture,
TResult Function(_EventComplete value)? complete,
TResult Function(_EventError value)? error,
required TResult orElse(),
}) =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $FingerprintEventCopyWith<$Res> {
factory $FingerprintEventCopyWith(
FingerprintEvent value, $Res Function(FingerprintEvent) then) =
_$FingerprintEventCopyWithImpl<$Res>;
}
/// @nodoc
class _$FingerprintEventCopyWithImpl<$Res>
implements $FingerprintEventCopyWith<$Res> {
_$FingerprintEventCopyWithImpl(this._value, this._then);
final FingerprintEvent _value;
// ignore: unused_field
final $Res Function(FingerprintEvent) _then;
}
/// @nodoc
abstract class _$EventCaptureCopyWith<$Res> {
factory _$EventCaptureCopyWith(
_EventCapture value, $Res Function(_EventCapture) then) =
__$EventCaptureCopyWithImpl<$Res>;
$Res call({int remaining});
}
/// @nodoc
class __$EventCaptureCopyWithImpl<$Res>
extends _$FingerprintEventCopyWithImpl<$Res>
implements _$EventCaptureCopyWith<$Res> {
__$EventCaptureCopyWithImpl(
_EventCapture _value, $Res Function(_EventCapture) _then)
: super(_value, (v) => _then(v as _EventCapture));
@override
_EventCapture get _value => super._value as _EventCapture;
@override
$Res call({
Object? remaining = freezed,
}) {
return _then(_EventCapture(
remaining == freezed
? _value.remaining
: remaining // ignore: cast_nullable_to_non_nullable
as int,
));
}
}
/// @nodoc
class _$_EventCapture implements _EventCapture {
_$_EventCapture(this.remaining);
@override
final int remaining;
@override
String toString() {
return 'FingerprintEvent.capture(remaining: $remaining)';
}
@override
bool operator ==(dynamic other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _EventCapture &&
const DeepCollectionEquality().equals(other.remaining, remaining));
}
@override
int get hashCode =>
Object.hash(runtimeType, const DeepCollectionEquality().hash(remaining));
@JsonKey(ignore: true)
@override
_$EventCaptureCopyWith<_EventCapture> get copyWith =>
__$EventCaptureCopyWithImpl<_EventCapture>(this, _$identity);
@override
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function(int remaining) capture,
2022-03-23 11:49:20 +03:00
required TResult Function(Fingerprint fingerprint) complete,
required TResult Function(int code) error,
}) {
return capture(remaining);
}
@override
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function(int remaining)? capture,
2022-03-23 11:49:20 +03:00
TResult Function(Fingerprint fingerprint)? complete,
TResult Function(int code)? error,
}) {
return capture?.call(remaining);
}
@override
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function(int remaining)? capture,
2022-03-23 11:49:20 +03:00
TResult Function(Fingerprint fingerprint)? complete,
TResult Function(int code)? error,
required TResult orElse(),
}) {
if (capture != null) {
return capture(remaining);
}
return orElse();
}
@override
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(_EventCapture value) capture,
required TResult Function(_EventComplete value) complete,
required TResult Function(_EventError value) error,
}) {
return capture(this);
}
@override
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(_EventCapture value)? capture,
TResult Function(_EventComplete value)? complete,
TResult Function(_EventError value)? error,
}) {
return capture?.call(this);
}
@override
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(_EventCapture value)? capture,
TResult Function(_EventComplete value)? complete,
TResult Function(_EventError value)? error,
required TResult orElse(),
}) {
if (capture != null) {
return capture(this);
}
return orElse();
}
}
abstract class _EventCapture implements FingerprintEvent {
factory _EventCapture(int remaining) = _$_EventCapture;
int get remaining;
@JsonKey(ignore: true)
_$EventCaptureCopyWith<_EventCapture> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class _$EventCompleteCopyWith<$Res> {
factory _$EventCompleteCopyWith(
_EventComplete value, $Res Function(_EventComplete) then) =
__$EventCompleteCopyWithImpl<$Res>;
2022-03-23 11:49:20 +03:00
$Res call({Fingerprint fingerprint});
$FingerprintCopyWith<$Res> get fingerprint;
}
/// @nodoc
class __$EventCompleteCopyWithImpl<$Res>
extends _$FingerprintEventCopyWithImpl<$Res>
implements _$EventCompleteCopyWith<$Res> {
__$EventCompleteCopyWithImpl(
_EventComplete _value, $Res Function(_EventComplete) _then)
: super(_value, (v) => _then(v as _EventComplete));
@override
_EventComplete get _value => super._value as _EventComplete;
@override
$Res call({
2022-03-23 11:49:20 +03:00
Object? fingerprint = freezed,
}) {
return _then(_EventComplete(
2022-03-23 11:49:20 +03:00
fingerprint == freezed
? _value.fingerprint
: fingerprint // ignore: cast_nullable_to_non_nullable
as Fingerprint,
));
}
2022-03-23 11:49:20 +03:00
@override
$FingerprintCopyWith<$Res> get fingerprint {
return $FingerprintCopyWith<$Res>(_value.fingerprint, (value) {
return _then(_value.copyWith(fingerprint: value));
});
}
}
/// @nodoc
class _$_EventComplete implements _EventComplete {
2022-03-23 11:49:20 +03:00
_$_EventComplete(this.fingerprint);
@override
2022-03-23 11:49:20 +03:00
final Fingerprint fingerprint;
@override
String toString() {
2022-03-23 11:49:20 +03:00
return 'FingerprintEvent.complete(fingerprint: $fingerprint)';
}
@override
bool operator ==(dynamic other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _EventComplete &&
const DeepCollectionEquality()
2022-03-23 11:49:20 +03:00
.equals(other.fingerprint, fingerprint));
}
@override
int get hashCode => Object.hash(
2022-03-23 11:49:20 +03:00
runtimeType, const DeepCollectionEquality().hash(fingerprint));
@JsonKey(ignore: true)
@override
_$EventCompleteCopyWith<_EventComplete> get copyWith =>
__$EventCompleteCopyWithImpl<_EventComplete>(this, _$identity);
@override
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function(int remaining) capture,
2022-03-23 11:49:20 +03:00
required TResult Function(Fingerprint fingerprint) complete,
required TResult Function(int code) error,
}) {
2022-03-23 11:49:20 +03:00
return complete(fingerprint);
}
@override
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function(int remaining)? capture,
2022-03-23 11:49:20 +03:00
TResult Function(Fingerprint fingerprint)? complete,
TResult Function(int code)? error,
}) {
2022-03-23 11:49:20 +03:00
return complete?.call(fingerprint);
}
@override
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function(int remaining)? capture,
2022-03-23 11:49:20 +03:00
TResult Function(Fingerprint fingerprint)? complete,
TResult Function(int code)? error,
required TResult orElse(),
}) {
if (complete != null) {
2022-03-23 11:49:20 +03:00
return complete(fingerprint);
}
return orElse();
}
@override
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(_EventCapture value) capture,
required TResult Function(_EventComplete value) complete,
required TResult Function(_EventError value) error,
}) {
return complete(this);
}
@override
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(_EventCapture value)? capture,
TResult Function(_EventComplete value)? complete,
TResult Function(_EventError value)? error,
}) {
return complete?.call(this);
}
@override
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(_EventCapture value)? capture,
TResult Function(_EventComplete value)? complete,
TResult Function(_EventError value)? error,
required TResult orElse(),
}) {
if (complete != null) {
return complete(this);
}
return orElse();
}
}
abstract class _EventComplete implements FingerprintEvent {
2022-03-23 11:49:20 +03:00
factory _EventComplete(Fingerprint fingerprint) = _$_EventComplete;
2022-03-23 11:49:20 +03:00
Fingerprint get fingerprint;
@JsonKey(ignore: true)
_$EventCompleteCopyWith<_EventComplete> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class _$EventErrorCopyWith<$Res> {
factory _$EventErrorCopyWith(
_EventError value, $Res Function(_EventError) then) =
__$EventErrorCopyWithImpl<$Res>;
$Res call({int code});
}
/// @nodoc
class __$EventErrorCopyWithImpl<$Res>
extends _$FingerprintEventCopyWithImpl<$Res>
implements _$EventErrorCopyWith<$Res> {
__$EventErrorCopyWithImpl(
_EventError _value, $Res Function(_EventError) _then)
: super(_value, (v) => _then(v as _EventError));
@override
_EventError get _value => super._value as _EventError;
@override
$Res call({
Object? code = freezed,
}) {
return _then(_EventError(
code == freezed
? _value.code
: code // ignore: cast_nullable_to_non_nullable
as int,
));
}
}
/// @nodoc
class _$_EventError implements _EventError {
_$_EventError(this.code);
@override
final int code;
@override
String toString() {
return 'FingerprintEvent.error(code: $code)';
}
@override
bool operator ==(dynamic other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _EventError &&
const DeepCollectionEquality().equals(other.code, code));
}
@override
int get hashCode =>
Object.hash(runtimeType, const DeepCollectionEquality().hash(code));
@JsonKey(ignore: true)
@override
_$EventErrorCopyWith<_EventError> get copyWith =>
__$EventErrorCopyWithImpl<_EventError>(this, _$identity);
@override
@optionalTypeArgs
TResult when<TResult extends Object?>({
required TResult Function(int remaining) capture,
2022-03-23 11:49:20 +03:00
required TResult Function(Fingerprint fingerprint) complete,
required TResult Function(int code) error,
}) {
return error(code);
}
@override
@optionalTypeArgs
TResult? whenOrNull<TResult extends Object?>({
TResult Function(int remaining)? capture,
2022-03-23 11:49:20 +03:00
TResult Function(Fingerprint fingerprint)? complete,
TResult Function(int code)? error,
}) {
return error?.call(code);
}
@override
@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
TResult Function(int remaining)? capture,
2022-03-23 11:49:20 +03:00
TResult Function(Fingerprint fingerprint)? complete,
TResult Function(int code)? error,
required TResult orElse(),
}) {
if (error != null) {
return error(code);
}
return orElse();
}
@override
@optionalTypeArgs
TResult map<TResult extends Object?>({
required TResult Function(_EventCapture value) capture,
required TResult Function(_EventComplete value) complete,
required TResult Function(_EventError value) error,
}) {
return error(this);
}
@override
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult Function(_EventCapture value)? capture,
TResult Function(_EventComplete value)? complete,
TResult Function(_EventError value)? error,
}) {
return error?.call(this);
}
@override
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(_EventCapture value)? capture,
TResult Function(_EventComplete value)? complete,
TResult Function(_EventError value)? error,
required TResult orElse(),
}) {
if (error != null) {
return error(this);
}
return orElse();
}
}
abstract class _EventError implements FingerprintEvent {
factory _EventError(int code) = _$_EventError;
int get code;
@JsonKey(ignore: true)
_$EventErrorCopyWith<_EventError> get copyWith =>
throw _privateConstructorUsedError;
}
2022-03-23 19:50:49 +03:00
FidoCredential _$FidoCredentialFromJson(Map<String, dynamic> json) {
return _FidoCredential.fromJson(json);
}
/// @nodoc
class _$FidoCredentialTearOff {
const _$FidoCredentialTearOff();
2022-03-23 19:50:49 +03:00
_FidoCredential call(
{required String rpId,
required String credentialId,
required String userId,
required String userName}) {
return _FidoCredential(
2022-03-23 19:50:49 +03:00
rpId: rpId,
credentialId: credentialId,
userId: userId,
userName: userName,
);
}
2022-03-23 19:50:49 +03:00
FidoCredential fromJson(Map<String, Object?> json) {
return FidoCredential.fromJson(json);
}
}
/// @nodoc
const $FidoCredential = _$FidoCredentialTearOff();
/// @nodoc
mixin _$FidoCredential {
String get rpId => throw _privateConstructorUsedError;
String get credentialId => throw _privateConstructorUsedError;
2022-03-23 19:50:49 +03:00
String get userId => throw _privateConstructorUsedError;
String get userName => throw _privateConstructorUsedError;
2022-03-23 19:50:49 +03:00
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
@JsonKey(ignore: true)
$FidoCredentialCopyWith<FidoCredential> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $FidoCredentialCopyWith<$Res> {
factory $FidoCredentialCopyWith(
FidoCredential value, $Res Function(FidoCredential) then) =
_$FidoCredentialCopyWithImpl<$Res>;
2022-03-23 19:50:49 +03:00
$Res call({String rpId, String credentialId, String userId, String userName});
}
/// @nodoc
class _$FidoCredentialCopyWithImpl<$Res>
implements $FidoCredentialCopyWith<$Res> {
_$FidoCredentialCopyWithImpl(this._value, this._then);
final FidoCredential _value;
// ignore: unused_field
final $Res Function(FidoCredential) _then;
@override
$Res call({
Object? rpId = freezed,
Object? credentialId = freezed,
2022-03-23 19:50:49 +03:00
Object? userId = freezed,
Object? userName = freezed,
}) {
return _then(_value.copyWith(
rpId: rpId == freezed
? _value.rpId
: rpId // ignore: cast_nullable_to_non_nullable
as String,
credentialId: credentialId == freezed
? _value.credentialId
: credentialId // ignore: cast_nullable_to_non_nullable
as String,
2022-03-23 19:50:49 +03:00
userId: userId == freezed
? _value.userId
: userId // ignore: cast_nullable_to_non_nullable
as String,
userName: userName == freezed
? _value.userName
: userName // ignore: cast_nullable_to_non_nullable
as String,
));
}
}
/// @nodoc
abstract class _$FidoCredentialCopyWith<$Res>
implements $FidoCredentialCopyWith<$Res> {
factory _$FidoCredentialCopyWith(
_FidoCredential value, $Res Function(_FidoCredential) then) =
__$FidoCredentialCopyWithImpl<$Res>;
@override
2022-03-23 19:50:49 +03:00
$Res call({String rpId, String credentialId, String userId, String userName});
}
/// @nodoc
class __$FidoCredentialCopyWithImpl<$Res>
extends _$FidoCredentialCopyWithImpl<$Res>
implements _$FidoCredentialCopyWith<$Res> {
__$FidoCredentialCopyWithImpl(
_FidoCredential _value, $Res Function(_FidoCredential) _then)
: super(_value, (v) => _then(v as _FidoCredential));
@override
_FidoCredential get _value => super._value as _FidoCredential;
@override
$Res call({
Object? rpId = freezed,
Object? credentialId = freezed,
2022-03-23 19:50:49 +03:00
Object? userId = freezed,
Object? userName = freezed,
}) {
return _then(_FidoCredential(
2022-03-23 19:50:49 +03:00
rpId: rpId == freezed
? _value.rpId
: rpId // ignore: cast_nullable_to_non_nullable
as String,
2022-03-23 19:50:49 +03:00
credentialId: credentialId == freezed
? _value.credentialId
: credentialId // ignore: cast_nullable_to_non_nullable
as String,
2022-03-23 19:50:49 +03:00
userId: userId == freezed
? _value.userId
: userId // ignore: cast_nullable_to_non_nullable
as String,
userName: userName == freezed
? _value.userName
: userName // ignore: cast_nullable_to_non_nullable
as String,
));
}
}
/// @nodoc
2022-03-23 19:50:49 +03:00
@JsonSerializable()
class _$_FidoCredential implements _FidoCredential {
2022-03-23 19:50:49 +03:00
_$_FidoCredential(
{required this.rpId,
required this.credentialId,
required this.userId,
required this.userName});
factory _$_FidoCredential.fromJson(Map<String, dynamic> json) =>
_$$_FidoCredentialFromJson(json);
@override
final String rpId;
@override
final String credentialId;
@override
2022-03-23 19:50:49 +03:00
final String userId;
@override
final String userName;
@override
String toString() {
2022-03-23 19:50:49 +03:00
return 'FidoCredential(rpId: $rpId, credentialId: $credentialId, userId: $userId, userName: $userName)';
}
@override
bool operator ==(dynamic other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _FidoCredential &&
const DeepCollectionEquality().equals(other.rpId, rpId) &&
const DeepCollectionEquality()
.equals(other.credentialId, credentialId) &&
2022-03-23 19:50:49 +03:00
const DeepCollectionEquality().equals(other.userId, userId) &&
const DeepCollectionEquality().equals(other.userName, userName));
}
@override
int get hashCode => Object.hash(
runtimeType,
const DeepCollectionEquality().hash(rpId),
const DeepCollectionEquality().hash(credentialId),
2022-03-23 19:50:49 +03:00
const DeepCollectionEquality().hash(userId),
const DeepCollectionEquality().hash(userName));
@JsonKey(ignore: true)
@override
_$FidoCredentialCopyWith<_FidoCredential> get copyWith =>
__$FidoCredentialCopyWithImpl<_FidoCredential>(this, _$identity);
2022-03-23 19:50:49 +03:00
@override
Map<String, dynamic> toJson() {
return _$$_FidoCredentialToJson(this);
}
}
abstract class _FidoCredential implements FidoCredential {
2022-03-23 19:50:49 +03:00
factory _FidoCredential(
{required String rpId,
required String credentialId,
required String userId,
required String userName}) = _$_FidoCredential;
factory _FidoCredential.fromJson(Map<String, dynamic> json) =
_$_FidoCredential.fromJson;
@override
String get rpId;
@override
String get credentialId;
@override
2022-03-23 19:50:49 +03:00
String get userId;
@override
String get userName;
@override
@JsonKey(ignore: true)
_$FidoCredentialCopyWith<_FidoCredential> get copyWith =>
2022-03-17 15:06:48 +03:00
throw _privateConstructorUsedError;
}