mirror of
https://gitlab.com/foxixus/neomovies_mobile.git
synced 2025-10-28 01:18:50 +05:00
fix
This commit is contained in:
@@ -14,12 +14,20 @@ class Reaction {
|
||||
|
||||
class UserReaction {
|
||||
final String? reactionType;
|
||||
final String? mediaType;
|
||||
final String? mediaId;
|
||||
|
||||
UserReaction({this.reactionType});
|
||||
UserReaction({
|
||||
this.reactionType,
|
||||
this.mediaType,
|
||||
this.mediaId,
|
||||
});
|
||||
|
||||
factory UserReaction.fromJson(Map<String, dynamic> json) {
|
||||
return UserReaction(
|
||||
reactionType: json['type'] as String?,
|
||||
mediaType: json['mediaType'] as String?,
|
||||
mediaId: json['mediaId'] as String?,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ class ReactionsRepository {
|
||||
return await _apiClient.getReactionCounts(mediaType, mediaId);
|
||||
}
|
||||
|
||||
Future<UserReaction> getMyReaction(String mediaType,String mediaId) async {
|
||||
Future<UserReaction?> getMyReaction(String mediaType,String mediaId) async {
|
||||
return await _apiClient.getMyReaction(mediaType, mediaId);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user