profile dependencies added
This commit is contained in:
@@ -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,
|
||||
};
|
||||
Reference in New Issue
Block a user