by replacing in extensions:
function saveAfter(Post $previous);
with
function saveAfter(Post $previous = null);
plus, after I this issues, I get another issue:
PHP Fatal error: Non-abstract method Flarum\Sticky\Post\DiscussionStickiedPost::saveAfter() must contain body
It is happesn becouse of ; at after function diclaration.
function saveAfter(Post $previous = null);
{}