getAuthenticatedSession method

  1. @override
Future<Either<Failure, AuthenticationData?>> getAuthenticatedSession()
override

Implementation

@override
getAuthenticatedSession() {
  return super.noSuchMethod(
    Invocation.method(#getAuthenticatedSession, []),
    returnValue: Future.value(right<Failure, AuthenticationData?>(null)),
    returnValueForMissingStub: Future.value(right<Failure, AuthenticationData?>(null)),
  );
}