sendOtp abstract method
- @POST.new("/phone-number/send-otp")
- @Body.new(nullToAbsent: true) required PhoneBody body,
Implementation
@POST("/phone-number/send-otp")
Future<Result<SendOTPResponse>> sendOtp({
@Body(nullToAbsent: true) required PhoneBody body,
});