HttpCloudSyncAdapter constructor

const HttpCloudSyncAdapter({
  1. required String baseUrl,
  2. Map<String, String>? headers,
  3. Duration timeout = const Duration(seconds: 30),
})

Constructs an HttpCloudSyncAdapter.

Implementation

const HttpCloudSyncAdapter({
  required this.baseUrl,
  this.headers,
  this.timeout = const Duration(seconds: 30),
});