Skip to main content

addLike method

Future<void> addLike (String postID)

<p>This function is used to add Like to the Post.</p> <p>params:</p> <ul> <li><code>postId</code> : id of the post where like need to be added.</li> </ul>

Implementation

Future\<void\> addLike(String postID) async \{
_localAddLike(postID);
final String mutation = PostQueries().addLike();
run the graphQl mutation.
final result = await _dbFunctions
.gqlAuthMutation(mutation, variables: \{"postID": postID\});
print(result);
return result
return result;
\}