profile dependencies added

This commit is contained in:
amirrezaghabeli
2025-08-17 09:46:33 +03:30
parent 3d0ca781bc
commit a00565cd4f
20 changed files with 1601 additions and 33 deletions
@@ -0,0 +1,24 @@
// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'profile_response.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
_ProfileResponse _$ProfileResponseFromJson(Map<String, dynamic> json) =>
_ProfileResponse(
message: json['message'] as String?,
success: json['success'] as bool?,
data:
json['data'] == null
? null
: ProfileData.fromJson(json['data'] as Map<String, dynamic>),
);
Map<String, dynamic> _$ProfileResponseToJson(_ProfileResponse instance) =>
<String, dynamic>{
'message': instance.message,
'success': instance.success,
'data': instance.data,
};