GetbaseProvider constructor

GetbaseProvider(
  1. String baseurl
)

Here Logic For initialisi GetConnect For Further Usage

Implementation

GetbaseProvider(String baseurl) {
  baseUrldata = baseurl;
  httpClient = GetConnect();
  httpClient.baseUrl = baseurl;
  httpClient.allowAutoSignedCert;
  httpClient.defaultContentType = "application/json";
  print("🛑 GET_BASE : Connected With GetBase .⚠️");
}