Core constructor
Core({
- required RequestType requestType,
The main ipAddress constructor which will be called to get the ipAddress.
requestType
: A request type which will change the response
type.
Implementation
Core({
required this.requestType,
}) {
_networkRequest = NetworkRequest();
}