edit key word api added
This commit is contained in:
@@ -25,6 +25,8 @@ _ProfileData _$ProfileDataFromJson(Map<String, dynamic> json) => _ProfileData(
|
||||
lastLoginAt: (json['last_login_at'] as num?)?.toInt(),
|
||||
createdAt: (json['created_at'] as num?)?.toInt(),
|
||||
updatedAt: (json['updated_at'] as num?)?.toInt(),
|
||||
keywords:
|
||||
(json['keywords'] as List<dynamic>?)?.map((e) => e as String).toList(),
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$ProfileDataToJson(_ProfileData instance) =>
|
||||
@@ -44,4 +46,5 @@ Map<String, dynamic> _$ProfileDataToJson(_ProfileData instance) =>
|
||||
'last_login_at': instance.lastLoginAt,
|
||||
'created_at': instance.createdAt,
|
||||
'updated_at': instance.updatedAt,
|
||||
'keywords': instance.keywords,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user