DataReceiverHttp<T> constructor
DataReceiverHttp<T> (
- String domain,
- String name, {
- String? baseURL,
- HttpClient? client,
- HttpMethod? method,
- String? path,
- bool fullPath = false,
- 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);