DataCallHttp constructor
      
      DataCallHttp({ 
    
    
- String? baseURL,
- HttpClient? client,
- HttpMethod method = HttpMethod.GET,
- String path = '',
- bool fullPath = false,
- Object? parametersPattern,
- Object? body,
- int maxRetries = 0,
Implementation
DataCallHttp(
    {String? baseURL,
    HttpClient? client,
    HttpMethod method = HttpMethod.GET,
    String path = '',
    bool fullPath = false,
    Object? parametersPattern,
    Object? body,
    int maxRetries = 0})
    : parametersPattern = toParametersPattern(parametersPattern),
      super(
          baseURL: baseURL,
          client: client,
          method: method,
          path: path,
          fullPath: fullPath,
          body: body,
          maxRetries: maxRetries);