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
@@ -6,10 +6,9 @@ part 'tender_detail_request.freezed.dart';
part 'tender_detail_request.g.dart';
@freezed
class TenderDetailRequest with _$TenderDetailRequest {
const factory TenderDetailRequest({
@JsonKey(name: 'id') required String id,
}) = _TenderDetailRequest;
abstract class TenderDetailRequest with _$TenderDetailRequest {
const factory TenderDetailRequest({@JsonKey(name: 'id') required String id}) =
_TenderDetailRequest;
factory TenderDetailRequest.fromJson(Map<String, dynamic> json) =>
_$TenderDetailRequestFromJson(json);
@@ -1,5 +1,5 @@
// coverage:ignore-file
// 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
@@ -9,169 +9,269 @@ part of 'tender_detail_request.dart';
// FreezedGenerator
// **************************************************************************
// dart format off
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',
);
TenderDetailRequest _$TenderDetailRequestFromJson(Map<String, dynamic> json) {
return _TenderDetailRequest.fromJson(json);
}
/// @nodoc
mixin _$TenderDetailRequest {
@JsonKey(name: 'id')
String get id => throw _privateConstructorUsedError;
@JsonKey(name: 'id') String get id;
/// Create a copy of TenderDetailRequest
/// with the given fields replaced by the non-null parameter values.
@JsonKey(includeFromJson: false, includeToJson: false)
@pragma('vm:prefer-inline')
$TenderDetailRequestCopyWith<TenderDetailRequest> get copyWith => _$TenderDetailRequestCopyWithImpl<TenderDetailRequest>(this as TenderDetailRequest, _$identity);
/// Serializes this TenderDetailRequest to a JSON map.
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
Map<String, dynamic> toJson();
@override
bool operator ==(Object other) {
return identical(this, other) || (other.runtimeType == runtimeType&&other is TenderDetailRequest&&(identical(other.id, id) || other.id == id));
}
@JsonKey(includeFromJson: false, includeToJson: false)
@override
int get hashCode => Object.hash(runtimeType,id);
@override
String toString() {
return 'TenderDetailRequest(id: $id)';
}
/// Create a copy of TenderDetailRequest
/// with the given fields replaced by the non-null parameter values.
@JsonKey(includeFromJson: false, includeToJson: false)
$TenderDetailRequestCopyWith<TenderDetailRequest> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $TenderDetailRequestCopyWith<$Res> {
factory $TenderDetailRequestCopyWith(
TenderDetailRequest value,
$Res Function(TenderDetailRequest) then,
) = _$TenderDetailRequestCopyWithImpl<$Res, TenderDetailRequest>;
@useResult
$Res call({@JsonKey(name: 'id') String id});
}
abstract mixin class $TenderDetailRequestCopyWith<$Res> {
factory $TenderDetailRequestCopyWith(TenderDetailRequest value, $Res Function(TenderDetailRequest) _then) = _$TenderDetailRequestCopyWithImpl;
@useResult
$Res call({
@JsonKey(name: 'id') String id
});
}
/// @nodoc
class _$TenderDetailRequestCopyWithImpl<$Res, $Val extends TenderDetailRequest>
class _$TenderDetailRequestCopyWithImpl<$Res>
implements $TenderDetailRequestCopyWith<$Res> {
_$TenderDetailRequestCopyWithImpl(this._value, this._then);
_$TenderDetailRequestCopyWithImpl(this._self, this._then);
// ignore: unused_field
final $Val _value;
// ignore: unused_field
final $Res Function($Val) _then;
final TenderDetailRequest _self;
final $Res Function(TenderDetailRequest) _then;
/// Create a copy of TenderDetailRequest
/// with the given fields replaced by the non-null parameter values.
@pragma('vm:prefer-inline')
@override
$Res call({Object? id = null}) {
return _then(
_value.copyWith(
id:
null == id
? _value.id
: id // ignore: cast_nullable_to_non_nullable
as String,
)
as $Val,
);
}
/// Create a copy of TenderDetailRequest
/// with the given fields replaced by the non-null parameter values.
@pragma('vm:prefer-inline') @override $Res call({Object? id = null,}) {
return _then(_self.copyWith(
id: null == id ? _self.id : id // ignore: cast_nullable_to_non_nullable
as String,
));
}
/// @nodoc
abstract class _$$TenderDetailRequestImplCopyWith<$Res>
implements $TenderDetailRequestCopyWith<$Res> {
factory _$$TenderDetailRequestImplCopyWith(
_$TenderDetailRequestImpl value,
$Res Function(_$TenderDetailRequestImpl) then,
) = __$$TenderDetailRequestImplCopyWithImpl<$Res>;
@override
@useResult
$Res call({@JsonKey(name: 'id') String id});
}
/// @nodoc
class __$$TenderDetailRequestImplCopyWithImpl<$Res>
extends _$TenderDetailRequestCopyWithImpl<$Res, _$TenderDetailRequestImpl>
implements _$$TenderDetailRequestImplCopyWith<$Res> {
__$$TenderDetailRequestImplCopyWithImpl(
_$TenderDetailRequestImpl _value,
$Res Function(_$TenderDetailRequestImpl) _then,
) : super(_value, _then);
/// Create a copy of TenderDetailRequest
/// with the given fields replaced by the non-null parameter values.
@pragma('vm:prefer-inline')
@override
$Res call({Object? id = null}) {
return _then(
_$TenderDetailRequestImpl(
id:
null == id
? _value.id
: id // ignore: cast_nullable_to_non_nullable
as String,
),
);
}
/// Adds pattern-matching-related methods to [TenderDetailRequest].
extension TenderDetailRequestPatterns on TenderDetailRequest {
/// 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( _TenderDetailRequest value)? $default,{required TResult orElse(),}){
final _that = this;
switch (_that) {
case _TenderDetailRequest() 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( _TenderDetailRequest value) $default,){
final _that = this;
switch (_that) {
case _TenderDetailRequest():
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( _TenderDetailRequest value)? $default,){
final _that = this;
switch (_that) {
case _TenderDetailRequest() 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(@JsonKey(name: 'id') String id)? $default,{required TResult orElse(),}) {final _that = this;
switch (_that) {
case _TenderDetailRequest() when $default != null:
return $default(_that.id);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(@JsonKey(name: 'id') String id) $default,) {final _that = this;
switch (_that) {
case _TenderDetailRequest():
return $default(_that.id);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(@JsonKey(name: 'id') String id)? $default,) {final _that = this;
switch (_that) {
case _TenderDetailRequest() when $default != null:
return $default(_that.id);case _:
return null;
}
}
}
/// @nodoc
@JsonSerializable()
class _$TenderDetailRequestImpl implements _TenderDetailRequest {
const _$TenderDetailRequestImpl({@JsonKey(name: 'id') required this.id});
factory _$TenderDetailRequestImpl.fromJson(Map<String, dynamic> json) =>
_$$TenderDetailRequestImplFromJson(json);
class _TenderDetailRequest implements TenderDetailRequest {
const _TenderDetailRequest({@JsonKey(name: 'id') required this.id});
factory _TenderDetailRequest.fromJson(Map<String, dynamic> json) => _$TenderDetailRequestFromJson(json);
@override
@JsonKey(name: 'id')
final String id;
@override@JsonKey(name: 'id') final String id;
@override
String toString() {
return 'TenderDetailRequest(id: $id)';
}
/// Create a copy of TenderDetailRequest
/// with the given fields replaced by the non-null parameter values.
@override @JsonKey(includeFromJson: false, includeToJson: false)
@pragma('vm:prefer-inline')
_$TenderDetailRequestCopyWith<_TenderDetailRequest> get copyWith => __$TenderDetailRequestCopyWithImpl<_TenderDetailRequest>(this, _$identity);
@override
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$TenderDetailRequestImpl &&
(identical(other.id, id) || other.id == id));
}
@JsonKey(includeFromJson: false, includeToJson: false)
@override
int get hashCode => Object.hash(runtimeType, id);
/// Create a copy of TenderDetailRequest
/// with the given fields replaced by the non-null parameter values.
@JsonKey(includeFromJson: false, includeToJson: false)
@override
@pragma('vm:prefer-inline')
_$$TenderDetailRequestImplCopyWith<_$TenderDetailRequestImpl> get copyWith =>
__$$TenderDetailRequestImplCopyWithImpl<_$TenderDetailRequestImpl>(
this,
_$identity,
);
@override
Map<String, dynamic> toJson() {
return _$$TenderDetailRequestImplToJson(this);
}
@override
Map<String, dynamic> toJson() {
return _$TenderDetailRequestToJson(this, );
}
abstract class _TenderDetailRequest implements TenderDetailRequest {
const factory _TenderDetailRequest({
@JsonKey(name: 'id') required final String id,
}) = _$TenderDetailRequestImpl;
factory _TenderDetailRequest.fromJson(Map<String, dynamic> json) =
_$TenderDetailRequestImpl.fromJson;
@override
@JsonKey(name: 'id')
String get id;
/// Create a copy of TenderDetailRequest
/// with the given fields replaced by the non-null parameter values.
@override
@JsonKey(includeFromJson: false, includeToJson: false)
_$$TenderDetailRequestImplCopyWith<_$TenderDetailRequestImpl> get copyWith =>
throw _privateConstructorUsedError;
@override
bool operator ==(Object other) {
return identical(this, other) || (other.runtimeType == runtimeType&&other is _TenderDetailRequest&&(identical(other.id, id) || other.id == id));
}
@JsonKey(includeFromJson: false, includeToJson: false)
@override
int get hashCode => Object.hash(runtimeType,id);
@override
String toString() {
return 'TenderDetailRequest(id: $id)';
}
}
/// @nodoc
abstract mixin class _$TenderDetailRequestCopyWith<$Res> implements $TenderDetailRequestCopyWith<$Res> {
factory _$TenderDetailRequestCopyWith(_TenderDetailRequest value, $Res Function(_TenderDetailRequest) _then) = __$TenderDetailRequestCopyWithImpl;
@override @useResult
$Res call({
@JsonKey(name: 'id') String id
});
}
/// @nodoc
class __$TenderDetailRequestCopyWithImpl<$Res>
implements _$TenderDetailRequestCopyWith<$Res> {
__$TenderDetailRequestCopyWithImpl(this._self, this._then);
final _TenderDetailRequest _self;
final $Res Function(_TenderDetailRequest) _then;
/// Create a copy of TenderDetailRequest
/// with the given fields replaced by the non-null parameter values.
@override @pragma('vm:prefer-inline') $Res call({Object? id = null,}) {
return _then(_TenderDetailRequest(
id: null == id ? _self.id : id // ignore: cast_nullable_to_non_nullable
as String,
));
}
}
// dart format on
@@ -6,10 +6,9 @@ part of 'tender_detail_request.dart';
// JsonSerializableGenerator
// **************************************************************************
_$TenderDetailRequestImpl _$$TenderDetailRequestImplFromJson(
Map<String, dynamic> json,
) => _$TenderDetailRequestImpl(id: json['id'] as String);
_TenderDetailRequest _$TenderDetailRequestFromJson(Map<String, dynamic> json) =>
_TenderDetailRequest(id: json['id'] as String);
Map<String, dynamic> _$$TenderDetailRequestImplToJson(
_$TenderDetailRequestImpl instance,
Map<String, dynamic> _$TenderDetailRequestToJson(
_TenderDetailRequest instance,
) => <String, dynamic>{'id': instance.id};