sendSms method

Future<Either<BaseException, void>> sendSms(
  1. String phone
)

Implementation

Future<Either<BaseException, void>> sendSms(String phone) {
  return post(
    AuthUrls.getSms,
    body: {'phone': phone},
    mapper: (json) => {},
  );
}