mirror of
https://github.com/foss42/apidash.git
synced 2025-06-06 11:28:07 +08:00
update freezed models
This commit is contained in:
@ -25,8 +25,12 @@ mixin _$EnvironmentModel {
|
|||||||
List<EnvironmentVariableModel> get values =>
|
List<EnvironmentVariableModel> get values =>
|
||||||
throw _privateConstructorUsedError;
|
throw _privateConstructorUsedError;
|
||||||
|
|
||||||
|
/// Serializes this EnvironmentModel to a JSON map.
|
||||||
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
|
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
|
||||||
@JsonKey(ignore: true)
|
|
||||||
|
/// Create a copy of EnvironmentModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||||
$EnvironmentModelCopyWith<EnvironmentModel> get copyWith =>
|
$EnvironmentModelCopyWith<EnvironmentModel> get copyWith =>
|
||||||
throw _privateConstructorUsedError;
|
throw _privateConstructorUsedError;
|
||||||
}
|
}
|
||||||
@ -50,6 +54,8 @@ class _$EnvironmentModelCopyWithImpl<$Res, $Val extends EnvironmentModel>
|
|||||||
// ignore: unused_field
|
// ignore: unused_field
|
||||||
final $Res Function($Val) _then;
|
final $Res Function($Val) _then;
|
||||||
|
|
||||||
|
/// Create a copy of EnvironmentModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
@pragma('vm:prefer-inline')
|
@pragma('vm:prefer-inline')
|
||||||
@override
|
@override
|
||||||
$Res call({
|
$Res call({
|
||||||
@ -93,6 +99,8 @@ class __$$EnvironmentModelImplCopyWithImpl<$Res>
|
|||||||
$Res Function(_$EnvironmentModelImpl) _then)
|
$Res Function(_$EnvironmentModelImpl) _then)
|
||||||
: super(_value, _then);
|
: super(_value, _then);
|
||||||
|
|
||||||
|
/// Create a copy of EnvironmentModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
@pragma('vm:prefer-inline')
|
@pragma('vm:prefer-inline')
|
||||||
@override
|
@override
|
||||||
$Res call({
|
$Res call({
|
||||||
@ -159,12 +167,14 @@ class _$EnvironmentModelImpl implements _EnvironmentModel {
|
|||||||
const DeepCollectionEquality().equals(other._values, _values));
|
const DeepCollectionEquality().equals(other._values, _values));
|
||||||
}
|
}
|
||||||
|
|
||||||
@JsonKey(ignore: true)
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||||
@override
|
@override
|
||||||
int get hashCode => Object.hash(
|
int get hashCode => Object.hash(
|
||||||
runtimeType, id, name, const DeepCollectionEquality().hash(_values));
|
runtimeType, id, name, const DeepCollectionEquality().hash(_values));
|
||||||
|
|
||||||
@JsonKey(ignore: true)
|
/// Create a copy of EnvironmentModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||||
@override
|
@override
|
||||||
@pragma('vm:prefer-inline')
|
@pragma('vm:prefer-inline')
|
||||||
_$$EnvironmentModelImplCopyWith<_$EnvironmentModelImpl> get copyWith =>
|
_$$EnvironmentModelImplCopyWith<_$EnvironmentModelImpl> get copyWith =>
|
||||||
@ -194,8 +204,11 @@ abstract class _EnvironmentModel implements EnvironmentModel {
|
|||||||
String get name;
|
String get name;
|
||||||
@override
|
@override
|
||||||
List<EnvironmentVariableModel> get values;
|
List<EnvironmentVariableModel> get values;
|
||||||
|
|
||||||
|
/// Create a copy of EnvironmentModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
@override
|
@override
|
||||||
@JsonKey(ignore: true)
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||||
_$$EnvironmentModelImplCopyWith<_$EnvironmentModelImpl> get copyWith =>
|
_$$EnvironmentModelImplCopyWith<_$EnvironmentModelImpl> get copyWith =>
|
||||||
throw _privateConstructorUsedError;
|
throw _privateConstructorUsedError;
|
||||||
}
|
}
|
||||||
@ -212,8 +225,12 @@ mixin _$EnvironmentVariableModel {
|
|||||||
EnvironmentVariableType get type => throw _privateConstructorUsedError;
|
EnvironmentVariableType get type => throw _privateConstructorUsedError;
|
||||||
bool get enabled => throw _privateConstructorUsedError;
|
bool get enabled => throw _privateConstructorUsedError;
|
||||||
|
|
||||||
|
/// Serializes this EnvironmentVariableModel to a JSON map.
|
||||||
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
|
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
|
||||||
@JsonKey(ignore: true)
|
|
||||||
|
/// Create a copy of EnvironmentVariableModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||||
$EnvironmentVariableModelCopyWith<EnvironmentVariableModel> get copyWith =>
|
$EnvironmentVariableModelCopyWith<EnvironmentVariableModel> get copyWith =>
|
||||||
throw _privateConstructorUsedError;
|
throw _privateConstructorUsedError;
|
||||||
}
|
}
|
||||||
@ -239,6 +256,8 @@ class _$EnvironmentVariableModelCopyWithImpl<$Res,
|
|||||||
// ignore: unused_field
|
// ignore: unused_field
|
||||||
final $Res Function($Val) _then;
|
final $Res Function($Val) _then;
|
||||||
|
|
||||||
|
/// Create a copy of EnvironmentVariableModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
@pragma('vm:prefer-inline')
|
@pragma('vm:prefer-inline')
|
||||||
@override
|
@override
|
||||||
$Res call({
|
$Res call({
|
||||||
@ -291,6 +310,8 @@ class __$$EnvironmentVariableModelImplCopyWithImpl<$Res>
|
|||||||
$Res Function(_$EnvironmentVariableModelImpl) _then)
|
$Res Function(_$EnvironmentVariableModelImpl) _then)
|
||||||
: super(_value, _then);
|
: super(_value, _then);
|
||||||
|
|
||||||
|
/// Create a copy of EnvironmentVariableModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
@pragma('vm:prefer-inline')
|
@pragma('vm:prefer-inline')
|
||||||
@override
|
@override
|
||||||
$Res call({
|
$Res call({
|
||||||
@ -360,11 +381,13 @@ class _$EnvironmentVariableModelImpl implements _EnvironmentVariableModel {
|
|||||||
(identical(other.enabled, enabled) || other.enabled == enabled));
|
(identical(other.enabled, enabled) || other.enabled == enabled));
|
||||||
}
|
}
|
||||||
|
|
||||||
@JsonKey(ignore: true)
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||||
@override
|
@override
|
||||||
int get hashCode => Object.hash(runtimeType, key, value, type, enabled);
|
int get hashCode => Object.hash(runtimeType, key, value, type, enabled);
|
||||||
|
|
||||||
@JsonKey(ignore: true)
|
/// Create a copy of EnvironmentVariableModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||||
@override
|
@override
|
||||||
@pragma('vm:prefer-inline')
|
@pragma('vm:prefer-inline')
|
||||||
_$$EnvironmentVariableModelImplCopyWith<_$EnvironmentVariableModelImpl>
|
_$$EnvironmentVariableModelImplCopyWith<_$EnvironmentVariableModelImpl>
|
||||||
@ -397,8 +420,11 @@ abstract class _EnvironmentVariableModel implements EnvironmentVariableModel {
|
|||||||
EnvironmentVariableType get type;
|
EnvironmentVariableType get type;
|
||||||
@override
|
@override
|
||||||
bool get enabled;
|
bool get enabled;
|
||||||
|
|
||||||
|
/// Create a copy of EnvironmentVariableModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
@override
|
@override
|
||||||
@JsonKey(ignore: true)
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||||
_$$EnvironmentVariableModelImplCopyWith<_$EnvironmentVariableModelImpl>
|
_$$EnvironmentVariableModelImplCopyWith<_$EnvironmentVariableModelImpl>
|
||||||
get copyWith => throw _privateConstructorUsedError;
|
get copyWith => throw _privateConstructorUsedError;
|
||||||
}
|
}
|
||||||
|
@ -28,8 +28,12 @@ mixin _$HistoryMetaModel {
|
|||||||
int get responseStatus => throw _privateConstructorUsedError;
|
int get responseStatus => throw _privateConstructorUsedError;
|
||||||
DateTime get timeStamp => throw _privateConstructorUsedError;
|
DateTime get timeStamp => throw _privateConstructorUsedError;
|
||||||
|
|
||||||
|
/// Serializes this HistoryMetaModel to a JSON map.
|
||||||
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
|
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
|
||||||
@JsonKey(ignore: true)
|
|
||||||
|
/// Create a copy of HistoryMetaModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||||
$HistoryMetaModelCopyWith<HistoryMetaModel> get copyWith =>
|
$HistoryMetaModelCopyWith<HistoryMetaModel> get copyWith =>
|
||||||
throw _privateConstructorUsedError;
|
throw _privateConstructorUsedError;
|
||||||
}
|
}
|
||||||
@ -60,6 +64,8 @@ class _$HistoryMetaModelCopyWithImpl<$Res, $Val extends HistoryMetaModel>
|
|||||||
// ignore: unused_field
|
// ignore: unused_field
|
||||||
final $Res Function($Val) _then;
|
final $Res Function($Val) _then;
|
||||||
|
|
||||||
|
/// Create a copy of HistoryMetaModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
@pragma('vm:prefer-inline')
|
@pragma('vm:prefer-inline')
|
||||||
@override
|
@override
|
||||||
$Res call({
|
$Res call({
|
||||||
@ -130,6 +136,8 @@ class __$$HistoryMetaModelImplCopyWithImpl<$Res>
|
|||||||
$Res Function(_$HistoryMetaModelImpl) _then)
|
$Res Function(_$HistoryMetaModelImpl) _then)
|
||||||
: super(_value, _then);
|
: super(_value, _then);
|
||||||
|
|
||||||
|
/// Create a copy of HistoryMetaModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
@pragma('vm:prefer-inline')
|
@pragma('vm:prefer-inline')
|
||||||
@override
|
@override
|
||||||
$Res call({
|
$Res call({
|
||||||
@ -228,12 +236,14 @@ class _$HistoryMetaModelImpl implements _HistoryMetaModel {
|
|||||||
other.timeStamp == timeStamp));
|
other.timeStamp == timeStamp));
|
||||||
}
|
}
|
||||||
|
|
||||||
@JsonKey(ignore: true)
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||||
@override
|
@override
|
||||||
int get hashCode => Object.hash(runtimeType, historyId, requestId, name, url,
|
int get hashCode => Object.hash(runtimeType, historyId, requestId, name, url,
|
||||||
method, responseStatus, timeStamp);
|
method, responseStatus, timeStamp);
|
||||||
|
|
||||||
@JsonKey(ignore: true)
|
/// Create a copy of HistoryMetaModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||||
@override
|
@override
|
||||||
@pragma('vm:prefer-inline')
|
@pragma('vm:prefer-inline')
|
||||||
_$$HistoryMetaModelImplCopyWith<_$HistoryMetaModelImpl> get copyWith =>
|
_$$HistoryMetaModelImplCopyWith<_$HistoryMetaModelImpl> get copyWith =>
|
||||||
@ -275,8 +285,11 @@ abstract class _HistoryMetaModel implements HistoryMetaModel {
|
|||||||
int get responseStatus;
|
int get responseStatus;
|
||||||
@override
|
@override
|
||||||
DateTime get timeStamp;
|
DateTime get timeStamp;
|
||||||
|
|
||||||
|
/// Create a copy of HistoryMetaModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
@override
|
@override
|
||||||
@JsonKey(ignore: true)
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||||
_$$HistoryMetaModelImplCopyWith<_$HistoryMetaModelImpl> get copyWith =>
|
_$$HistoryMetaModelImplCopyWith<_$HistoryMetaModelImpl> get copyWith =>
|
||||||
throw _privateConstructorUsedError;
|
throw _privateConstructorUsedError;
|
||||||
}
|
}
|
||||||
|
@ -25,8 +25,12 @@ mixin _$HistoryRequestModel {
|
|||||||
HttpRequestModel get httpRequestModel => throw _privateConstructorUsedError;
|
HttpRequestModel get httpRequestModel => throw _privateConstructorUsedError;
|
||||||
HttpResponseModel get httpResponseModel => throw _privateConstructorUsedError;
|
HttpResponseModel get httpResponseModel => throw _privateConstructorUsedError;
|
||||||
|
|
||||||
|
/// Serializes this HistoryRequestModel to a JSON map.
|
||||||
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
|
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
|
||||||
@JsonKey(ignore: true)
|
|
||||||
|
/// Create a copy of HistoryRequestModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||||
$HistoryRequestModelCopyWith<HistoryRequestModel> get copyWith =>
|
$HistoryRequestModelCopyWith<HistoryRequestModel> get copyWith =>
|
||||||
throw _privateConstructorUsedError;
|
throw _privateConstructorUsedError;
|
||||||
}
|
}
|
||||||
@ -58,6 +62,8 @@ class _$HistoryRequestModelCopyWithImpl<$Res, $Val extends HistoryRequestModel>
|
|||||||
// ignore: unused_field
|
// ignore: unused_field
|
||||||
final $Res Function($Val) _then;
|
final $Res Function($Val) _then;
|
||||||
|
|
||||||
|
/// Create a copy of HistoryRequestModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
@pragma('vm:prefer-inline')
|
@pragma('vm:prefer-inline')
|
||||||
@override
|
@override
|
||||||
$Res call({
|
$Res call({
|
||||||
@ -86,6 +92,8 @@ class _$HistoryRequestModelCopyWithImpl<$Res, $Val extends HistoryRequestModel>
|
|||||||
) as $Val);
|
) as $Val);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Create a copy of HistoryRequestModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
@override
|
@override
|
||||||
@pragma('vm:prefer-inline')
|
@pragma('vm:prefer-inline')
|
||||||
$HistoryMetaModelCopyWith<$Res> get metaData {
|
$HistoryMetaModelCopyWith<$Res> get metaData {
|
||||||
@ -94,6 +102,8 @@ class _$HistoryRequestModelCopyWithImpl<$Res, $Val extends HistoryRequestModel>
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Create a copy of HistoryRequestModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
@override
|
@override
|
||||||
@pragma('vm:prefer-inline')
|
@pragma('vm:prefer-inline')
|
||||||
$HttpRequestModelCopyWith<$Res> get httpRequestModel {
|
$HttpRequestModelCopyWith<$Res> get httpRequestModel {
|
||||||
@ -102,6 +112,8 @@ class _$HistoryRequestModelCopyWithImpl<$Res, $Val extends HistoryRequestModel>
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Create a copy of HistoryRequestModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
@override
|
@override
|
||||||
@pragma('vm:prefer-inline')
|
@pragma('vm:prefer-inline')
|
||||||
$HttpResponseModelCopyWith<$Res> get httpResponseModel {
|
$HttpResponseModelCopyWith<$Res> get httpResponseModel {
|
||||||
@ -141,6 +153,8 @@ class __$$HistoryRequestModelImplCopyWithImpl<$Res>
|
|||||||
$Res Function(_$HistoryRequestModelImpl) _then)
|
$Res Function(_$HistoryRequestModelImpl) _then)
|
||||||
: super(_value, _then);
|
: super(_value, _then);
|
||||||
|
|
||||||
|
/// Create a copy of HistoryRequestModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
@pragma('vm:prefer-inline')
|
@pragma('vm:prefer-inline')
|
||||||
@override
|
@override
|
||||||
$Res call({
|
$Res call({
|
||||||
@ -212,12 +226,14 @@ class _$HistoryRequestModelImpl implements _HistoryRequestModel {
|
|||||||
other.httpResponseModel == httpResponseModel));
|
other.httpResponseModel == httpResponseModel));
|
||||||
}
|
}
|
||||||
|
|
||||||
@JsonKey(ignore: true)
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||||
@override
|
@override
|
||||||
int get hashCode => Object.hash(
|
int get hashCode => Object.hash(
|
||||||
runtimeType, historyId, metaData, httpRequestModel, httpResponseModel);
|
runtimeType, historyId, metaData, httpRequestModel, httpResponseModel);
|
||||||
|
|
||||||
@JsonKey(ignore: true)
|
/// Create a copy of HistoryRequestModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||||
@override
|
@override
|
||||||
@pragma('vm:prefer-inline')
|
@pragma('vm:prefer-inline')
|
||||||
_$$HistoryRequestModelImplCopyWith<_$HistoryRequestModelImpl> get copyWith =>
|
_$$HistoryRequestModelImplCopyWith<_$HistoryRequestModelImpl> get copyWith =>
|
||||||
@ -251,8 +267,11 @@ abstract class _HistoryRequestModel implements HistoryRequestModel {
|
|||||||
HttpRequestModel get httpRequestModel;
|
HttpRequestModel get httpRequestModel;
|
||||||
@override
|
@override
|
||||||
HttpResponseModel get httpResponseModel;
|
HttpResponseModel get httpResponseModel;
|
||||||
|
|
||||||
|
/// Create a copy of HistoryRequestModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
@override
|
@override
|
||||||
@JsonKey(ignore: true)
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||||
_$$HistoryRequestModelImplCopyWith<_$HistoryRequestModelImpl> get copyWith =>
|
_$$HistoryRequestModelImplCopyWith<_$HistoryRequestModelImpl> get copyWith =>
|
||||||
throw _privateConstructorUsedError;
|
throw _privateConstructorUsedError;
|
||||||
}
|
}
|
||||||
|
@ -35,8 +35,12 @@ mixin _$RequestModel {
|
|||||||
@JsonKey(includeToJson: false)
|
@JsonKey(includeToJson: false)
|
||||||
DateTime? get sendingTime => throw _privateConstructorUsedError;
|
DateTime? get sendingTime => throw _privateConstructorUsedError;
|
||||||
|
|
||||||
|
/// Serializes this RequestModel to a JSON map.
|
||||||
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
|
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
|
||||||
@JsonKey(ignore: true)
|
|
||||||
|
/// Create a copy of RequestModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||||
$RequestModelCopyWith<RequestModel> get copyWith =>
|
$RequestModelCopyWith<RequestModel> get copyWith =>
|
||||||
throw _privateConstructorUsedError;
|
throw _privateConstructorUsedError;
|
||||||
}
|
}
|
||||||
@ -73,6 +77,8 @@ class _$RequestModelCopyWithImpl<$Res, $Val extends RequestModel>
|
|||||||
// ignore: unused_field
|
// ignore: unused_field
|
||||||
final $Res Function($Val) _then;
|
final $Res Function($Val) _then;
|
||||||
|
|
||||||
|
/// Create a copy of RequestModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
@pragma('vm:prefer-inline')
|
@pragma('vm:prefer-inline')
|
||||||
@override
|
@override
|
||||||
$Res call({
|
$Res call({
|
||||||
@ -131,6 +137,8 @@ class _$RequestModelCopyWithImpl<$Res, $Val extends RequestModel>
|
|||||||
) as $Val);
|
) as $Val);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Create a copy of RequestModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
@override
|
@override
|
||||||
@pragma('vm:prefer-inline')
|
@pragma('vm:prefer-inline')
|
||||||
$HttpRequestModelCopyWith<$Res>? get httpRequestModel {
|
$HttpRequestModelCopyWith<$Res>? get httpRequestModel {
|
||||||
@ -143,6 +151,8 @@ class _$RequestModelCopyWithImpl<$Res, $Val extends RequestModel>
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Create a copy of RequestModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
@override
|
@override
|
||||||
@pragma('vm:prefer-inline')
|
@pragma('vm:prefer-inline')
|
||||||
$HttpResponseModelCopyWith<$Res>? get httpResponseModel {
|
$HttpResponseModelCopyWith<$Res>? get httpResponseModel {
|
||||||
@ -190,6 +200,8 @@ class __$$RequestModelImplCopyWithImpl<$Res>
|
|||||||
_$RequestModelImpl _value, $Res Function(_$RequestModelImpl) _then)
|
_$RequestModelImpl _value, $Res Function(_$RequestModelImpl) _then)
|
||||||
: super(_value, _then);
|
: super(_value, _then);
|
||||||
|
|
||||||
|
/// Create a copy of RequestModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
@pragma('vm:prefer-inline')
|
@pragma('vm:prefer-inline')
|
||||||
@override
|
@override
|
||||||
$Res call({
|
$Res call({
|
||||||
@ -322,7 +334,7 @@ class _$RequestModelImpl implements _RequestModel {
|
|||||||
other.sendingTime == sendingTime));
|
other.sendingTime == sendingTime));
|
||||||
}
|
}
|
||||||
|
|
||||||
@JsonKey(ignore: true)
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||||
@override
|
@override
|
||||||
int get hashCode => Object.hash(
|
int get hashCode => Object.hash(
|
||||||
runtimeType,
|
runtimeType,
|
||||||
@ -337,7 +349,9 @@ class _$RequestModelImpl implements _RequestModel {
|
|||||||
isWorking,
|
isWorking,
|
||||||
sendingTime);
|
sendingTime);
|
||||||
|
|
||||||
@JsonKey(ignore: true)
|
/// Create a copy of RequestModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||||
@override
|
@override
|
||||||
@pragma('vm:prefer-inline')
|
@pragma('vm:prefer-inline')
|
||||||
_$$RequestModelImplCopyWith<_$RequestModelImpl> get copyWith =>
|
_$$RequestModelImplCopyWith<_$RequestModelImpl> get copyWith =>
|
||||||
@ -391,8 +405,11 @@ abstract class _RequestModel implements RequestModel {
|
|||||||
@override
|
@override
|
||||||
@JsonKey(includeToJson: false)
|
@JsonKey(includeToJson: false)
|
||||||
DateTime? get sendingTime;
|
DateTime? get sendingTime;
|
||||||
|
|
||||||
|
/// Create a copy of RequestModel
|
||||||
|
/// with the given fields replaced by the non-null parameter values.
|
||||||
@override
|
@override
|
||||||
@JsonKey(ignore: true)
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||||
_$$RequestModelImplCopyWith<_$RequestModelImpl> get copyWith =>
|
_$$RequestModelImplCopyWith<_$RequestModelImpl> get copyWith =>
|
||||||
throw _privateConstructorUsedError;
|
throw _privateConstructorUsedError;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user