DataReceiverHttp<T> constructor

DataReceiverHttp<T>(
  1. String domain,
  2. String name, {
  3. String? baseURL,
  4. HttpClient? client,
  5. HttpMethod? method,
  6. String? path,
  7. bool fullPath = false,
  8. Object? body,
})

Implementation

DataReceiverHttp(String domain, String name,
    {String? baseURL,
    HttpClient? client,
    HttpMethod? method,
    String? path,
    bool fullPath = false,
    Object? body})
    : httpConfig = DataCallHttp(
          baseURL: baseURL,
          client: client,
          method: method ?? HttpMethod.GET,
          path: path ?? '',
          fullPath: fullPath,
          body: body,
          maxRetries: 0),
      super(domain, name);