added company profile and fixed some parts
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
// ignore_for_file: invalid_annotation_target
|
||||
|
||||
import 'package:freezed_annotation/freezed_annotation.dart';
|
||||
|
||||
import '../company_profile_data/company_profile_data.dart';
|
||||
import '../error/error_model.dart';
|
||||
|
||||
part 'company_profile_response.freezed.dart';
|
||||
part 'company_profile_response.g.dart';
|
||||
|
||||
@freezed
|
||||
abstract class CompanyProfileResponse with _$CompanyProfileResponse {
|
||||
const factory CompanyProfileResponse({
|
||||
required String? message,
|
||||
required bool? success,
|
||||
required ErrorModel? error,
|
||||
required CompanyProfileData? data,
|
||||
}) = _CompanyProfileResponse;
|
||||
|
||||
factory CompanyProfileResponse.fromJson(Map<String, dynamic> json) =>
|
||||
_$CompanyProfileResponseFromJson(json);
|
||||
}
|
||||
+334
@@ -0,0 +1,334 @@
|
||||
// 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 'company_profile_response.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// FreezedGenerator
|
||||
// **************************************************************************
|
||||
|
||||
// dart format off
|
||||
T _$identity<T>(T value) => value;
|
||||
|
||||
/// @nodoc
|
||||
mixin _$CompanyProfileResponse {
|
||||
|
||||
String? get message; bool? get success; ErrorModel? get error; CompanyProfileData? get data;
|
||||
/// Create a copy of CompanyProfileResponse
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||
@pragma('vm:prefer-inline')
|
||||
$CompanyProfileResponseCopyWith<CompanyProfileResponse> get copyWith => _$CompanyProfileResponseCopyWithImpl<CompanyProfileResponse>(this as CompanyProfileResponse, _$identity);
|
||||
|
||||
/// Serializes this CompanyProfileResponse to a JSON map.
|
||||
Map<String, dynamic> toJson();
|
||||
|
||||
|
||||
@override
|
||||
bool operator ==(Object other) {
|
||||
return identical(this, other) || (other.runtimeType == runtimeType&&other is CompanyProfileResponse&&(identical(other.message, message) || other.message == message)&&(identical(other.success, success) || other.success == success)&&(identical(other.error, error) || other.error == error)&&(identical(other.data, data) || other.data == data));
|
||||
}
|
||||
|
||||
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||
@override
|
||||
int get hashCode => Object.hash(runtimeType,message,success,error,data);
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return 'CompanyProfileResponse(message: $message, success: $success, error: $error, data: $data)';
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
abstract mixin class $CompanyProfileResponseCopyWith<$Res> {
|
||||
factory $CompanyProfileResponseCopyWith(CompanyProfileResponse value, $Res Function(CompanyProfileResponse) _then) = _$CompanyProfileResponseCopyWithImpl;
|
||||
@useResult
|
||||
$Res call({
|
||||
String? message, bool? success, ErrorModel? error, CompanyProfileData? data
|
||||
});
|
||||
|
||||
|
||||
$ErrorModelCopyWith<$Res>? get error;$CompanyProfileDataCopyWith<$Res>? get data;
|
||||
|
||||
}
|
||||
/// @nodoc
|
||||
class _$CompanyProfileResponseCopyWithImpl<$Res>
|
||||
implements $CompanyProfileResponseCopyWith<$Res> {
|
||||
_$CompanyProfileResponseCopyWithImpl(this._self, this._then);
|
||||
|
||||
final CompanyProfileResponse _self;
|
||||
final $Res Function(CompanyProfileResponse) _then;
|
||||
|
||||
/// Create a copy of CompanyProfileResponse
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
@pragma('vm:prefer-inline') @override $Res call({Object? message = freezed,Object? success = freezed,Object? error = freezed,Object? data = freezed,}) {
|
||||
return _then(_self.copyWith(
|
||||
message: freezed == message ? _self.message : message // ignore: cast_nullable_to_non_nullable
|
||||
as String?,success: freezed == success ? _self.success : success // ignore: cast_nullable_to_non_nullable
|
||||
as bool?,error: freezed == error ? _self.error : error // ignore: cast_nullable_to_non_nullable
|
||||
as ErrorModel?,data: freezed == data ? _self.data : data // ignore: cast_nullable_to_non_nullable
|
||||
as CompanyProfileData?,
|
||||
));
|
||||
}
|
||||
/// Create a copy of CompanyProfileResponse
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
@override
|
||||
@pragma('vm:prefer-inline')
|
||||
$ErrorModelCopyWith<$Res>? get error {
|
||||
if (_self.error == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return $ErrorModelCopyWith<$Res>(_self.error!, (value) {
|
||||
return _then(_self.copyWith(error: value));
|
||||
});
|
||||
}/// Create a copy of CompanyProfileResponse
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
@override
|
||||
@pragma('vm:prefer-inline')
|
||||
$CompanyProfileDataCopyWith<$Res>? get data {
|
||||
if (_self.data == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return $CompanyProfileDataCopyWith<$Res>(_self.data!, (value) {
|
||||
return _then(_self.copyWith(data: value));
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/// Adds pattern-matching-related methods to [CompanyProfileResponse].
|
||||
extension CompanyProfileResponsePatterns on CompanyProfileResponse {
|
||||
/// 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( _CompanyProfileResponse value)? $default,{required TResult orElse(),}){
|
||||
final _that = this;
|
||||
switch (_that) {
|
||||
case _CompanyProfileResponse() 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( _CompanyProfileResponse value) $default,){
|
||||
final _that = this;
|
||||
switch (_that) {
|
||||
case _CompanyProfileResponse():
|
||||
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( _CompanyProfileResponse value)? $default,){
|
||||
final _that = this;
|
||||
switch (_that) {
|
||||
case _CompanyProfileResponse() 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, bool? success, ErrorModel? error, CompanyProfileData? data)? $default,{required TResult orElse(),}) {final _that = this;
|
||||
switch (_that) {
|
||||
case _CompanyProfileResponse() when $default != null:
|
||||
return $default(_that.message,_that.success,_that.error,_that.data);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, bool? success, ErrorModel? error, CompanyProfileData? data) $default,) {final _that = this;
|
||||
switch (_that) {
|
||||
case _CompanyProfileResponse():
|
||||
return $default(_that.message,_that.success,_that.error,_that.data);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, bool? success, ErrorModel? error, CompanyProfileData? data)? $default,) {final _that = this;
|
||||
switch (_that) {
|
||||
case _CompanyProfileResponse() when $default != null:
|
||||
return $default(_that.message,_that.success,_that.error,_that.data);case _:
|
||||
return null;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
@JsonSerializable()
|
||||
|
||||
class _CompanyProfileResponse implements CompanyProfileResponse {
|
||||
const _CompanyProfileResponse({required this.message, required this.success, required this.error, required this.data});
|
||||
factory _CompanyProfileResponse.fromJson(Map<String, dynamic> json) => _$CompanyProfileResponseFromJson(json);
|
||||
|
||||
@override final String? message;
|
||||
@override final bool? success;
|
||||
@override final ErrorModel? error;
|
||||
@override final CompanyProfileData? data;
|
||||
|
||||
/// Create a copy of CompanyProfileResponse
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
@override @JsonKey(includeFromJson: false, includeToJson: false)
|
||||
@pragma('vm:prefer-inline')
|
||||
_$CompanyProfileResponseCopyWith<_CompanyProfileResponse> get copyWith => __$CompanyProfileResponseCopyWithImpl<_CompanyProfileResponse>(this, _$identity);
|
||||
|
||||
@override
|
||||
Map<String, dynamic> toJson() {
|
||||
return _$CompanyProfileResponseToJson(this, );
|
||||
}
|
||||
|
||||
@override
|
||||
bool operator ==(Object other) {
|
||||
return identical(this, other) || (other.runtimeType == runtimeType&&other is _CompanyProfileResponse&&(identical(other.message, message) || other.message == message)&&(identical(other.success, success) || other.success == success)&&(identical(other.error, error) || other.error == error)&&(identical(other.data, data) || other.data == data));
|
||||
}
|
||||
|
||||
@JsonKey(includeFromJson: false, includeToJson: false)
|
||||
@override
|
||||
int get hashCode => Object.hash(runtimeType,message,success,error,data);
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return 'CompanyProfileResponse(message: $message, success: $success, error: $error, data: $data)';
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
abstract mixin class _$CompanyProfileResponseCopyWith<$Res> implements $CompanyProfileResponseCopyWith<$Res> {
|
||||
factory _$CompanyProfileResponseCopyWith(_CompanyProfileResponse value, $Res Function(_CompanyProfileResponse) _then) = __$CompanyProfileResponseCopyWithImpl;
|
||||
@override @useResult
|
||||
$Res call({
|
||||
String? message, bool? success, ErrorModel? error, CompanyProfileData? data
|
||||
});
|
||||
|
||||
|
||||
@override $ErrorModelCopyWith<$Res>? get error;@override $CompanyProfileDataCopyWith<$Res>? get data;
|
||||
|
||||
}
|
||||
/// @nodoc
|
||||
class __$CompanyProfileResponseCopyWithImpl<$Res>
|
||||
implements _$CompanyProfileResponseCopyWith<$Res> {
|
||||
__$CompanyProfileResponseCopyWithImpl(this._self, this._then);
|
||||
|
||||
final _CompanyProfileResponse _self;
|
||||
final $Res Function(_CompanyProfileResponse) _then;
|
||||
|
||||
/// Create a copy of CompanyProfileResponse
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
@override @pragma('vm:prefer-inline') $Res call({Object? message = freezed,Object? success = freezed,Object? error = freezed,Object? data = freezed,}) {
|
||||
return _then(_CompanyProfileResponse(
|
||||
message: freezed == message ? _self.message : message // ignore: cast_nullable_to_non_nullable
|
||||
as String?,success: freezed == success ? _self.success : success // ignore: cast_nullable_to_non_nullable
|
||||
as bool?,error: freezed == error ? _self.error : error // ignore: cast_nullable_to_non_nullable
|
||||
as ErrorModel?,data: freezed == data ? _self.data : data // ignore: cast_nullable_to_non_nullable
|
||||
as CompanyProfileData?,
|
||||
));
|
||||
}
|
||||
|
||||
/// Create a copy of CompanyProfileResponse
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
@override
|
||||
@pragma('vm:prefer-inline')
|
||||
$ErrorModelCopyWith<$Res>? get error {
|
||||
if (_self.error == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return $ErrorModelCopyWith<$Res>(_self.error!, (value) {
|
||||
return _then(_self.copyWith(error: value));
|
||||
});
|
||||
}/// Create a copy of CompanyProfileResponse
|
||||
/// with the given fields replaced by the non-null parameter values.
|
||||
@override
|
||||
@pragma('vm:prefer-inline')
|
||||
$CompanyProfileDataCopyWith<$Res>? get data {
|
||||
if (_self.data == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return $CompanyProfileDataCopyWith<$Res>(_self.data!, (value) {
|
||||
return _then(_self.copyWith(data: value));
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
// dart format on
|
||||
@@ -0,0 +1,31 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'company_profile_response.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
_CompanyProfileResponse _$CompanyProfileResponseFromJson(
|
||||
Map<String, dynamic> json,
|
||||
) => _CompanyProfileResponse(
|
||||
message: json['message'] as String?,
|
||||
success: json['success'] as bool?,
|
||||
error:
|
||||
json['error'] == null
|
||||
? null
|
||||
: ErrorModel.fromJson(json['error'] as Map<String, dynamic>),
|
||||
data:
|
||||
json['data'] == null
|
||||
? null
|
||||
: CompanyProfileData.fromJson(json['data'] as Map<String, dynamic>),
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$CompanyProfileResponseToJson(
|
||||
_CompanyProfileResponse instance,
|
||||
) => <String, dynamic>{
|
||||
'message': instance.message,
|
||||
'success': instance.success,
|
||||
'error': instance.error,
|
||||
'data': instance.data,
|
||||
};
|
||||
Reference in New Issue
Block a user