1

I/m facing this issue. Can anyone assist? Thanks First page

Second page. Both pages are shown below

1 Answers1

5

In order to access a member via static access it needs to be marked as static like so:

static final myStaticFinalVariable;

Alternatively, you must instantiate the class first by creating an instance () to call an instance method.

AuthService().user
Jahn E.
  • 1,228
  • 3
  • 6
  • 21