Settings constructor

const Settings({
  1. required String url,
  2. required Language language,
  3. Call? call,
  4. User? user,
  5. bool loggingEnabled = false,
  6. bool? mobileRequired,
  7. Map<String, String> queryParams = const {},
})

Implementation

const Settings({
  required this.url,
  required this.language,
  this.call,
  this.user,
  // this.device,
  this.loggingEnabled = false,
  this.mobileRequired,
  this.queryParams = const {},
});