NiceViewServiceConfig constructor

const NiceViewServiceConfig({
  1. required String baseUrl,
  2. Future<Map<String, String>> headersFactory()?,
  3. Duration cacheTtl = const Duration(hours: 1),
})

Implementation

const NiceViewServiceConfig({
  required this.baseUrl,
  this.headersFactory,
  this.cacheTtl = const Duration(hours: 1),
});