nc-photos/app/lib/widget/splash.g.dart

95 lines
2.9 KiB
Dart
Raw Normal View History

2022-12-08 16:39:13 +01:00
// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'splash.dart';
2024-08-17 20:01:59 +02:00
// **************************************************************************
// CopyWithLintRuleGenerator
// **************************************************************************
// ignore_for_file: library_private_types_in_public_api, duplicate_ignore
// **************************************************************************
// CopyWithGenerator
// **************************************************************************
abstract class $_StateCopyWithWorker {
_State call(
{int? changelogFromVersion,
double? upgradeProgress,
String? upgradeText,
bool? isDone});
}
class _$_StateCopyWithWorkerImpl implements $_StateCopyWithWorker {
_$_StateCopyWithWorkerImpl(this.that);
@override
_State call(
{dynamic changelogFromVersion = copyWithNull,
dynamic upgradeProgress = copyWithNull,
dynamic upgradeText = copyWithNull,
dynamic isDone}) {
return _State(
changelogFromVersion: changelogFromVersion == copyWithNull
? that.changelogFromVersion
: changelogFromVersion as int?,
upgradeProgress: upgradeProgress == copyWithNull
? that.upgradeProgress
: upgradeProgress as double?,
upgradeText: upgradeText == copyWithNull
? that.upgradeText
: upgradeText as String?,
isDone: isDone as bool? ?? that.isDone);
}
final _State that;
}
extension $_StateCopyWith on _State {
$_StateCopyWithWorker get copyWith => _$copyWith;
$_StateCopyWithWorker get _$copyWith => _$_StateCopyWithWorkerImpl(this);
}
2022-12-16 16:01:04 +01:00
// **************************************************************************
// NpLogGenerator
// **************************************************************************
2024-08-17 20:01:59 +02:00
extension _$_WrappedSplashNpLog on _WrappedSplash {
2022-12-16 16:01:04 +01:00
// ignore: unused_element
2022-12-20 17:49:14 +01:00
Logger get _log => log;
2024-08-17 20:01:59 +02:00
static final log = Logger("widget.splash._WrappedSplash");
}
extension _$_BlocNpLog on _Bloc {
// ignore: unused_element
Logger get _log => log;
static final log = Logger("widget.splash._Bloc");
2022-12-16 16:01:04 +01:00
}
2022-12-08 16:39:13 +01:00
// **************************************************************************
// ToStringGenerator
// **************************************************************************
2024-08-17 20:01:59 +02:00
extension _$_StateToString on _State {
String _$toString() {
// ignore: unnecessary_string_interpolations
return "_State {changelogFromVersion: $changelogFromVersion, upgradeProgress: ${upgradeProgress == null ? null : "${upgradeProgress!.toStringAsFixed(3)}"}, upgradeText: $upgradeText, isDone: $isDone}";
}
}
extension _$_InitToString on _Init {
String _$toString() {
// ignore: unnecessary_string_interpolations
return "_Init {}";
}
}
extension _$_ChangelogDismissedToString on _ChangelogDismissed {
2022-12-08 16:39:13 +01:00
String _$toString() {
// ignore: unnecessary_string_interpolations
2024-08-17 20:01:59 +02:00
return "_ChangelogDismissed {}";
2022-12-08 16:39:13 +01:00
}
}