sendVerification abstract method

  1. @POST.new("/email-otp/send-verification-otp")
Future<Result<SuccessResponse>> sendVerification({
  1. @BodyExtra.new("email") required String email,
  2. @BodyExtra.new("type") required String type,
})

Implementation

@POST("/email-otp/send-verification-otp")
Future<Result<SuccessResponse>> sendVerification({
  @BodyExtra("email") required String email,
  @BodyExtra("type") required String type,
});