getAuthUrlYandex method

Future<Either<BaseException, String>> getAuthUrlYandex()

Implementation

Future<Either<BaseException, String>> getAuthUrlYandex() {
  return get(
    AuthUrls.loginYandex,
    mapper: (json) => json['url'] as String,
  );
}