refactor : rename files and update routes for poultry actions
feat : poultry kill registration and poultry OrderList ** Made With Nima **
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import 'package:rasadyar_core/core.dart';
|
||||
|
||||
part 'poultry_export.freezed.dart';
|
||||
part 'poultry_export.g.dart';
|
||||
|
||||
@freezed
|
||||
abstract class PoultryExport with _$PoultryExport {
|
||||
const factory PoultryExport({
|
||||
String? key,
|
||||
bool? allow,
|
||||
bool? limitationStatus,
|
||||
double? limitation,
|
||||
}) = _PoultryExport;
|
||||
|
||||
factory PoultryExport.fromJson(Map<String, dynamic> json) =>
|
||||
_$PoultryExportFromJson(json);
|
||||
}
|
||||
@@ -0,0 +1,286 @@
|
||||
// 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 'poultry_export.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// FreezedGenerator
|
||||
// **************************************************************************
|
||||
|
||||
// dart format off
|
||||
T _$identity<T>(T value) => value;
|
||||
|
||||
/// @nodoc
|
||||
mixin _$PoultryExport {
|
||||
|
||||
String? get key; bool? get allow; bool? get limitationStatus; double? get limitation;
|
||||
/// Create a copy of PoultryExport
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||
@pragma('vm:prefer-inline')
|
||||
$PoultryExportCopyWith<PoultryExport> get copyWith => _$PoultryExportCopyWithImpl<PoultryExport>(this as PoultryExport, _$identity);
|
||||
|
||||
/// Serializes this PoultryExport to a JSON map.
|
||||
Map<String, dynamic> toJson();
|
||||
|
||||
|
||||
@override
|
||||
bool operator ==(Object other) {
|
||||
return identical(this, other) || (other.runtimeType == runtimeType&&other is PoultryExport&&(identical(other.key, key) || other.key == key)&&(identical(other.allow, allow) || other.allow == allow)&&(identical(other.limitationStatus, limitationStatus) || other.limitationStatus == limitationStatus)&&(identical(other.limitation, limitation) || other.limitation == limitation));
|
||||
}
|
||||
|
||||
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||
@override
|
||||
int get hashCode => Object.hash(runtimeType,key,allow,limitationStatus,limitation);
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return 'PoultryExport(key: $key, allow: $allow, limitationStatus: $limitationStatus, limitation: $limitation)';
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
abstract mixin class $PoultryExportCopyWith<$Res> {
|
||||
factory $PoultryExportCopyWith(PoultryExport value, $Res Function(PoultryExport) _then) = _$PoultryExportCopyWithImpl;
|
||||
@useResult
|
||||
$Res call({
|
||||
String? key, bool? allow, bool? limitationStatus, double? limitation
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
/// @nodoc
|
||||
class _$PoultryExportCopyWithImpl<$Res>
|
||||
implements $PoultryExportCopyWith<$Res> {
|
||||
_$PoultryExportCopyWithImpl(this._self, this._then);
|
||||
|
||||
final PoultryExport _self;
|
||||
final $Res Function(PoultryExport) _then;
|
||||
|
||||
/// Create a copy of PoultryExport
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
@pragma('vm:prefer-inline') @override $Res call({Object? key = freezed,Object? allow = freezed,Object? limitationStatus = freezed,Object? limitation = freezed,}) {
|
||||
return _then(_self.copyWith(
|
||||
key: freezed == key ? _self.key : key // ignore: cast_nullable_to_non_nullable
|
||||
as String?,allow: freezed == allow ? _self.allow : allow // ignore: cast_nullable_to_non_nullable
|
||||
as bool?,limitationStatus: freezed == limitationStatus ? _self.limitationStatus : limitationStatus // ignore: cast_nullable_to_non_nullable
|
||||
as bool?,limitation: freezed == limitation ? _self.limitation : limitation // ignore: cast_nullable_to_non_nullable
|
||||
as double?,
|
||||
));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/// Adds pattern-matching-related methods to [PoultryExport].
|
||||
extension PoultryExportPatterns on PoultryExport {
|
||||
/// 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( _PoultryExport value)? $default,{required TResult orElse(),}){
|
||||
final _that = this;
|
||||
switch (_that) {
|
||||
case _PoultryExport() 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( _PoultryExport value) $default,){
|
||||
final _that = this;
|
||||
switch (_that) {
|
||||
case _PoultryExport():
|
||||
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( _PoultryExport value)? $default,){
|
||||
final _that = this;
|
||||
switch (_that) {
|
||||
case _PoultryExport() 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? key, bool? allow, bool? limitationStatus, double? limitation)? $default,{required TResult orElse(),}) {final _that = this;
|
||||
switch (_that) {
|
||||
case _PoultryExport() when $default != null:
|
||||
return $default(_that.key,_that.allow,_that.limitationStatus,_that.limitation);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? key, bool? allow, bool? limitationStatus, double? limitation) $default,) {final _that = this;
|
||||
switch (_that) {
|
||||
case _PoultryExport():
|
||||
return $default(_that.key,_that.allow,_that.limitationStatus,_that.limitation);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? key, bool? allow, bool? limitationStatus, double? limitation)? $default,) {final _that = this;
|
||||
switch (_that) {
|
||||
case _PoultryExport() when $default != null:
|
||||
return $default(_that.key,_that.allow,_that.limitationStatus,_that.limitation);case _:
|
||||
return null;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
@JsonSerializable()
|
||||
|
||||
class _PoultryExport implements PoultryExport {
|
||||
const _PoultryExport({this.key, this.allow, this.limitationStatus, this.limitation});
|
||||
factory _PoultryExport.fromJson(Map<String, dynamic> json) => _$PoultryExportFromJson(json);
|
||||
|
||||
@override final String? key;
|
||||
@override final bool? allow;
|
||||
@override final bool? limitationStatus;
|
||||
@override final double? limitation;
|
||||
|
||||
/// Create a copy of PoultryExport
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
@override @JsonKey(includeFromJson: false, includeToJson: false)
|
||||
@pragma('vm:prefer-inline')
|
||||
_$PoultryExportCopyWith<_PoultryExport> get copyWith => __$PoultryExportCopyWithImpl<_PoultryExport>(this, _$identity);
|
||||
|
||||
@override
|
||||
Map<String, dynamic> toJson() {
|
||||
return _$PoultryExportToJson(this, );
|
||||
}
|
||||
|
||||
@override
|
||||
bool operator ==(Object other) {
|
||||
return identical(this, other) || (other.runtimeType == runtimeType&&other is _PoultryExport&&(identical(other.key, key) || other.key == key)&&(identical(other.allow, allow) || other.allow == allow)&&(identical(other.limitationStatus, limitationStatus) || other.limitationStatus == limitationStatus)&&(identical(other.limitation, limitation) || other.limitation == limitation));
|
||||
}
|
||||
|
||||
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||
@override
|
||||
int get hashCode => Object.hash(runtimeType,key,allow,limitationStatus,limitation);
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return 'PoultryExport(key: $key, allow: $allow, limitationStatus: $limitationStatus, limitation: $limitation)';
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
abstract mixin class _$PoultryExportCopyWith<$Res> implements $PoultryExportCopyWith<$Res> {
|
||||
factory _$PoultryExportCopyWith(_PoultryExport value, $Res Function(_PoultryExport) _then) = __$PoultryExportCopyWithImpl;
|
||||
@override @useResult
|
||||
$Res call({
|
||||
String? key, bool? allow, bool? limitationStatus, double? limitation
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
/// @nodoc
|
||||
class __$PoultryExportCopyWithImpl<$Res>
|
||||
implements _$PoultryExportCopyWith<$Res> {
|
||||
__$PoultryExportCopyWithImpl(this._self, this._then);
|
||||
|
||||
final _PoultryExport _self;
|
||||
final $Res Function(_PoultryExport) _then;
|
||||
|
||||
/// Create a copy of PoultryExport
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
@override @pragma('vm:prefer-inline') $Res call({Object? key = freezed,Object? allow = freezed,Object? limitationStatus = freezed,Object? limitation = freezed,}) {
|
||||
return _then(_PoultryExport(
|
||||
key: freezed == key ? _self.key : key // ignore: cast_nullable_to_non_nullable
|
||||
as String?,allow: freezed == allow ? _self.allow : allow // ignore: cast_nullable_to_non_nullable
|
||||
as bool?,limitationStatus: freezed == limitationStatus ? _self.limitationStatus : limitationStatus // ignore: cast_nullable_to_non_nullable
|
||||
as bool?,limitation: freezed == limitation ? _self.limitation : limitation // ignore: cast_nullable_to_non_nullable
|
||||
as double?,
|
||||
));
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
// dart format on
|
||||
@@ -0,0 +1,23 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'poultry_export.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
_PoultryExport _$PoultryExportFromJson(Map<String, dynamic> json) =>
|
||||
_PoultryExport(
|
||||
key: json['key'] as String?,
|
||||
allow: json['allow'] as bool?,
|
||||
limitationStatus: json['limitation_status'] as bool?,
|
||||
limitation: (json['limitation'] as num?)?.toDouble(),
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$PoultryExportToJson(_PoultryExport instance) =>
|
||||
<String, dynamic>{
|
||||
'key': instance.key,
|
||||
'allow': instance.allow,
|
||||
'limitation_status': instance.limitationStatus,
|
||||
'limitation': instance.limitation,
|
||||
};
|
||||
Reference in New Issue
Block a user