logout method

Future<Either<BaseException, void>> logout()

Implementation

Future<Either<BaseException, void>> logout() {
  return post(
    AuthUrls.logout,
    mapper: (json) => {},
  );
}