SickChillScope constructor

const SickChillScope({
  1. Key? key,
  2. required String baseUrl,
  3. required Widget child,
  4. required String apiKey,
  5. String? proxyUrl,
  6. bool enableLogs = false,
})

Implementation

const SickChillScope({
  Key? key,
  required this.baseUrl,
  required this.child,
  required this.apiKey,
  this.proxyUrl,
  this.enableLogs = false,
}) : super(key: key);