sendCode method

Future<Either<BaseException, void>> sendCode(
  1. AuthPhoneParams params
)

Implementation

Future<Either<BaseException, void>> sendCode(AuthPhoneParams params) {
  return post(
    AuthUrls.sendSmsCode,
    body: params.toMap(),
    mapper: (json) => {},
  );
}