wp_create_nonce function doesn’t work inside a plugin?

wp_create_nonce is a pluggable function loaded after plugins are loaded.

Be sure to call your class method on proper hook, 'init' (or later) is a good place: once your function output something (a form) there is no reason to run earlier than that.