merged branches

This commit is contained in:
amirrezaghabeli
2025-08-12 09:11:26 +03:30
parent ba3becc709
commit a7e208a5de
58 changed files with 4584 additions and 2336 deletions
@@ -0,0 +1,13 @@
import 'package:freezed_annotation/freezed_annotation.dart';
part 'tender_dislike_response.freezed.dart';
part 'tender_dislike_response.g.dart';
@freezed
abstract class TenderDislikeResponse with _$TenderDislikeResponse {
const factory TenderDislikeResponse({required String? message}) =
_TenderDislikeResponse;
factory TenderDislikeResponse.fromJson(Map<String, Object?> json) =>
_$TenderDislikeResponseFromJson(json);
}
@@ -0,0 +1,277 @@
// GENERATED CODE - DO NOT MODIFY BY HAND
// coverage:ignore-file
// 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 'tender_dislike_response.dart';
// **************************************************************************
// FreezedGenerator
// **************************************************************************
// dart format off
T _$identity<T>(T value) => value;
/// @nodoc
mixin _$TenderDislikeResponse {
String? get message;
/// Create a copy of TenderDislikeResponse
/// with the given fields replaced by the non-null parameter values.
@JsonKey(includeFromJson: false, includeToJson: false)
@pragma('vm:prefer-inline')
$TenderDislikeResponseCopyWith<TenderDislikeResponse> get copyWith => _$TenderDislikeResponseCopyWithImpl<TenderDislikeResponse>(this as TenderDislikeResponse, _$identity);
/// Serializes this TenderDislikeResponse to a JSON map.
Map<String, dynamic> toJson();
@override
bool operator ==(Object other) {
return identical(this, other) || (other.runtimeType == runtimeType&&other is TenderDislikeResponse&&(identical(other.message, message) || other.message == message));
}
@JsonKey(includeFromJson: false, includeToJson: false)
@override
int get hashCode => Object.hash(runtimeType,message);
@override
String toString() {
return 'TenderDislikeResponse(message: $message)';
}
}
/// @nodoc
abstract mixin class $TenderDislikeResponseCopyWith<$Res> {
factory $TenderDislikeResponseCopyWith(TenderDislikeResponse value, $Res Function(TenderDislikeResponse) _then) = _$TenderDislikeResponseCopyWithImpl;
@useResult
$Res call({
String? message
});
}
/// @nodoc
class _$TenderDislikeResponseCopyWithImpl<$Res>
implements $TenderDislikeResponseCopyWith<$Res> {
_$TenderDislikeResponseCopyWithImpl(this._self, this._then);
final TenderDislikeResponse _self;
final $Res Function(TenderDislikeResponse) _then;
/// Create a copy of TenderDislikeResponse
/// with the given fields replaced by the non-null parameter values.
@pragma('vm:prefer-inline') @override $Res call({Object? message = freezed,}) {
return _then(_self.copyWith(
message: freezed == message ? _self.message : message // ignore: cast_nullable_to_non_nullable
as String?,
));
}
}
/// Adds pattern-matching-related methods to [TenderDislikeResponse].
extension TenderDislikeResponsePatterns on TenderDislikeResponse {
/// A variant of `map` that fallback to returning `orElse`.
///
/// It is equivalent to doing:
/// ```dart
/// switch (sealedClass) {
/// case final Subclass value:
/// return ...;
/// case _:
/// return orElse();
/// }
/// ```
@optionalTypeArgs TResult maybeMap<TResult extends Object?>(TResult Function( _TenderDislikeResponse value)? $default,{required TResult orElse(),}){
final _that = this;
switch (_that) {
case _TenderDislikeResponse() when $default != null:
return $default(_that);case _:
return orElse();
}
}
/// A `switch`-like method, using callbacks.
///
/// Callbacks receives the raw object, upcasted.
/// It is equivalent to doing:
/// ```dart
/// switch (sealedClass) {
/// case final Subclass value:
/// return ...;
/// case final Subclass2 value:
/// return ...;
/// }
/// ```
@optionalTypeArgs TResult map<TResult extends Object?>(TResult Function( _TenderDislikeResponse value) $default,){
final _that = this;
switch (_that) {
case _TenderDislikeResponse():
return $default(_that);case _:
throw StateError('Unexpected subclass');
}
}
/// A variant of `map` that fallback to returning `null`.
///
/// It is equivalent to doing:
/// ```dart
/// switch (sealedClass) {
/// case final Subclass value:
/// return ...;
/// case _:
/// return null;
/// }
/// ```
@optionalTypeArgs TResult? mapOrNull<TResult extends Object?>(TResult? Function( _TenderDislikeResponse value)? $default,){
final _that = this;
switch (_that) {
case _TenderDislikeResponse() when $default != null:
return $default(_that);case _:
return null;
}
}
/// A variant of `when` that fallback to an `orElse` callback.
///
/// It is equivalent to doing:
/// ```dart
/// switch (sealedClass) {
/// case Subclass(:final field):
/// return ...;
/// case _:
/// return orElse();
/// }
/// ```
@optionalTypeArgs TResult maybeWhen<TResult extends Object?>(TResult Function( String? message)? $default,{required TResult orElse(),}) {final _that = this;
switch (_that) {
case _TenderDislikeResponse() when $default != null:
return $default(_that.message);case _:
return orElse();
}
}
/// A `switch`-like method, using callbacks.
///
/// As opposed to `map`, this offers destructuring.
/// It is equivalent to doing:
/// ```dart
/// switch (sealedClass) {
/// case Subclass(:final field):
/// return ...;
/// case Subclass2(:final field2):
/// return ...;
/// }
/// ```
@optionalTypeArgs TResult when<TResult extends Object?>(TResult Function( String? message) $default,) {final _that = this;
switch (_that) {
case _TenderDislikeResponse():
return $default(_that.message);case _:
throw StateError('Unexpected subclass');
}
}
/// A variant of `when` that fallback to returning `null`
///
/// It is equivalent to doing:
/// ```dart
/// switch (sealedClass) {
/// case Subclass(:final field):
/// return ...;
/// case _:
/// return null;
/// }
/// ```
@optionalTypeArgs TResult? whenOrNull<TResult extends Object?>(TResult? Function( String? message)? $default,) {final _that = this;
switch (_that) {
case _TenderDislikeResponse() when $default != null:
return $default(_that.message);case _:
return null;
}
}
}
/// @nodoc
@JsonSerializable()
class _TenderDislikeResponse implements TenderDislikeResponse {
const _TenderDislikeResponse({required this.message});
factory _TenderDislikeResponse.fromJson(Map<String, dynamic> json) => _$TenderDislikeResponseFromJson(json);
@override final String? message;
/// Create a copy of TenderDislikeResponse
/// with the given fields replaced by the non-null parameter values.
@override @JsonKey(includeFromJson: false, includeToJson: false)
@pragma('vm:prefer-inline')
_$TenderDislikeResponseCopyWith<_TenderDislikeResponse> get copyWith => __$TenderDislikeResponseCopyWithImpl<_TenderDislikeResponse>(this, _$identity);
@override
Map<String, dynamic> toJson() {
return _$TenderDislikeResponseToJson(this, );
}
@override
bool operator ==(Object other) {
return identical(this, other) || (other.runtimeType == runtimeType&&other is _TenderDislikeResponse&&(identical(other.message, message) || other.message == message));
}
@JsonKey(includeFromJson: false, includeToJson: false)
@override
int get hashCode => Object.hash(runtimeType,message);
@override
String toString() {
return 'TenderDislikeResponse(message: $message)';
}
}
/// @nodoc
abstract mixin class _$TenderDislikeResponseCopyWith<$Res> implements $TenderDislikeResponseCopyWith<$Res> {
factory _$TenderDislikeResponseCopyWith(_TenderDislikeResponse value, $Res Function(_TenderDislikeResponse) _then) = __$TenderDislikeResponseCopyWithImpl;
@override @useResult
$Res call({
String? message
});
}
/// @nodoc
class __$TenderDislikeResponseCopyWithImpl<$Res>
implements _$TenderDislikeResponseCopyWith<$Res> {
__$TenderDislikeResponseCopyWithImpl(this._self, this._then);
final _TenderDislikeResponse _self;
final $Res Function(_TenderDislikeResponse) _then;
/// Create a copy of TenderDislikeResponse
/// with the given fields replaced by the non-null parameter values.
@override @pragma('vm:prefer-inline') $Res call({Object? message = freezed,}) {
return _then(_TenderDislikeResponse(
message: freezed == message ? _self.message : message // ignore: cast_nullable_to_non_nullable
as String?,
));
}
}
// dart format on
@@ -0,0 +1,15 @@
// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'tender_dislike_response.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
_TenderDislikeResponse _$TenderDislikeResponseFromJson(
Map<String, dynamic> json,
) => _TenderDislikeResponse(message: json['message'] as String?);
Map<String, dynamic> _$TenderDislikeResponseToJson(
_TenderDislikeResponse instance,
) => <String, dynamic>{'message': instance.message};