authServer property

AuthServer? authServer

Must override to return authServer of application under test.

An ApplicationChannel should expose its AuthServer service as a property. Return that AuthServer from this method, e.g.,

        AuthServer get authServer => channel.authServer;

Implementation

AuthServer? get authServer;