While developing my flutter App, I used this IP address (http://192.168.60.97/myappapi) to connect to my backend as I was using Apache (Wamp) server installed on my laptop. I got the IP address by entering IPConfig on CMD.
I want to get the App online and I have moved the backend to my web host online. Can I use my website address (https://mywebsite/myappapi) as the API URL?
class API{
static const hostConnect = "http://192.168.60.97/myappapi";
static const uploadFolderURL = "$hostConnect/uploads/";
static const loginAPIURL = "$hostConnect/apis/login";
static const updateUserProfileUri = "$hostConnect/edit-profile";
static const userProfileDataURL = "$hostConnect/profile-data";
}