logPostSuccess method
- String postName
Log that a post action to the server has completed successfully
Implementation
Future<void> logPostSuccess(String postName) {
return logEvent(
'post_success',
parameters: {
'post_name': postName,
},
);
}