stubGetSessionData method
Implementation
stubGetSessionData([Either<Failure, AuthenticationData?>? response]) {
when(getAuthenticatedSession()).thenAnswer((_) async {
return response ??
right<Failure, AuthenticationData?>(
authenticationDataModel(),
);
});
}