Skip to content

Commit

Permalink
🔵 other: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tom8zds committed Sep 22, 2024
1 parent a4ee6c3 commit cfb180c
Show file tree
Hide file tree
Showing 7 changed files with 239 additions and 177 deletions.
17 changes: 14 additions & 3 deletions lib/core/providers/locale_provider.freezed.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ mixin _$LocaleConfig {
LocaleMode get mode => throw _privateConstructorUsedError;
Locale get customLocale => throw _privateConstructorUsedError;

@JsonKey(ignore: true)
/// Create a copy of LocaleConfig
/// with the given fields replaced by the non-null parameter values.
@JsonKey(includeFromJson: false, includeToJson: false)
$LocaleConfigCopyWith<LocaleConfig> get copyWith =>
throw _privateConstructorUsedError;
}
Expand All @@ -43,6 +45,8 @@ class _$LocaleConfigCopyWithImpl<$Res, $Val extends LocaleConfig>
// ignore: unused_field
final $Res Function($Val) _then;

/// Create a copy of LocaleConfig
/// with the given fields replaced by the non-null parameter values.
@pragma('vm:prefer-inline')
@override
$Res call({
Expand Down Expand Up @@ -81,6 +85,8 @@ class __$$LocaleConfigImplCopyWithImpl<$Res>
_$LocaleConfigImpl _value, $Res Function(_$LocaleConfigImpl) _then)
: super(_value, _then);

/// Create a copy of LocaleConfig
/// with the given fields replaced by the non-null parameter values.
@pragma('vm:prefer-inline')
@override
$Res call({
Expand Down Expand Up @@ -128,7 +134,9 @@ class _$LocaleConfigImpl implements _LocaleConfig {
@override
int get hashCode => Object.hash(runtimeType, mode, customLocale);

@JsonKey(ignore: true)
/// Create a copy of LocaleConfig
/// with the given fields replaced by the non-null parameter values.
@JsonKey(includeFromJson: false, includeToJson: false)
@override
@pragma('vm:prefer-inline')
_$$LocaleConfigImplCopyWith<_$LocaleConfigImpl> get copyWith =>
Expand All @@ -144,8 +152,11 @@ abstract class _LocaleConfig implements LocaleConfig {
LocaleMode get mode;
@override
Locale get customLocale;

/// Create a copy of LocaleConfig
/// with the given fields replaced by the non-null parameter values.
@override
@JsonKey(ignore: true)
@JsonKey(includeFromJson: false, includeToJson: false)
_$$LocaleConfigImplCopyWith<_$LocaleConfigImpl> get copyWith =>
throw _privateConstructorUsedError;
}
26 changes: 24 additions & 2 deletions lib/core/rust/actor/mission.freezed.dart
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@ class _$FileStateCopyWithImpl<$Res, $Val extends FileState>
final $Val _value;
// ignore: unused_field
final $Res Function($Val) _then;

/// Create a copy of FileState
/// with the given fields replaced by the non-null parameter values.
}

/// @nodoc
Expand All @@ -105,6 +108,9 @@ class __$$FileState_PendingImplCopyWithImpl<$Res>
__$$FileState_PendingImplCopyWithImpl(_$FileState_PendingImpl _value,
$Res Function(_$FileState_PendingImpl) _then)
: super(_value, _then);

/// Create a copy of FileState
/// with the given fields replaced by the non-null parameter values.
}

/// @nodoc
Expand Down Expand Up @@ -226,6 +232,9 @@ class __$$FileState_TransferImplCopyWithImpl<$Res>
__$$FileState_TransferImplCopyWithImpl(_$FileState_TransferImpl _value,
$Res Function(_$FileState_TransferImpl) _then)
: super(_value, _then);

/// Create a copy of FileState
/// with the given fields replaced by the non-null parameter values.
}

/// @nodoc
Expand Down Expand Up @@ -347,6 +356,9 @@ class __$$FileState_FinishImplCopyWithImpl<$Res>
__$$FileState_FinishImplCopyWithImpl(_$FileState_FinishImpl _value,
$Res Function(_$FileState_FinishImpl) _then)
: super(_value, _then);

/// Create a copy of FileState
/// with the given fields replaced by the non-null parameter values.
}

/// @nodoc
Expand Down Expand Up @@ -468,6 +480,9 @@ class __$$FileState_SkipImplCopyWithImpl<$Res>
__$$FileState_SkipImplCopyWithImpl(
_$FileState_SkipImpl _value, $Res Function(_$FileState_SkipImpl) _then)
: super(_value, _then);

/// Create a copy of FileState
/// with the given fields replaced by the non-null parameter values.
}

/// @nodoc
Expand Down Expand Up @@ -592,6 +607,8 @@ class __$$FileState_FailImplCopyWithImpl<$Res>
_$FileState_FailImpl _value, $Res Function(_$FileState_FailImpl) _then)
: super(_value, _then);

/// Create a copy of FileState
/// with the given fields replaced by the non-null parameter values.
@pragma('vm:prefer-inline')
@override
$Res call({
Expand Down Expand Up @@ -630,7 +647,9 @@ class _$FileState_FailImpl extends FileState_Fail {
@override
int get hashCode => Object.hash(runtimeType, msg);

@JsonKey(ignore: true)
/// Create a copy of FileState
/// with the given fields replaced by the non-null parameter values.
@JsonKey(includeFromJson: false, includeToJson: false)
@override
@pragma('vm:prefer-inline')
_$$FileState_FailImplCopyWith<_$FileState_FailImpl> get copyWith =>
Expand Down Expand Up @@ -724,7 +743,10 @@ abstract class FileState_Fail extends FileState {
const FileState_Fail._() : super._();

String get msg;
@JsonKey(ignore: true)

/// Create a copy of FileState
/// with the given fields replaced by the non-null parameter values.
@JsonKey(includeFromJson: false, includeToJson: false)
_$$FileState_FailImplCopyWith<_$FileState_FailImpl> get copyWith =>
throw _privateConstructorUsedError;
}
2 changes: 1 addition & 1 deletion lib/i18n/strings.g.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/// Locales: 2
/// Strings: 60 (30 per locale)
///
/// Built on 2024-07-14 at 06:18 UTC
/// Built on 2024-09-22 at 03:03 UTC
// coverage:ignore-file
// ignore_for_file: type=lint
Expand Down
Loading

0 comments on commit cfb180c

Please sign in to comment.