PostActionListener constructor

PostActionListener(
  1. void onPostActionsLambda(
    1. List<PostAction>
    )
)

This abstract class should be implemented in order to receive post action notifications.

Implementation

factory PostActionListener(
  void Function(List<PostAction>) onPostActionsLambda,

) => PostActionListener$Lambdas(
  onPostActionsLambda,

);